Skip to content

Commit

Permalink
feat: exposing name property in IFlow (#12)
Browse files Browse the repository at this point in the history
Exposes `name` property in the `IFlow` interface.
  • Loading branch information
rpawlaszek authored Jun 27, 2023
1 parent 93daa72 commit b1653b8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions API.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/core/flows/flow-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { ISource } from '../vertices/source';

export interface IFlow extends IResource {
readonly arn: string;
readonly name: string;
readonly type: FlowType;

onRunStarted(id: string, options?: OnEventOptions): Rule;
Expand Down

0 comments on commit b1653b8

Please sign in to comment.