Skip to content
This repository was archived by the owner on Jan 9, 2020. It is now read-only.

Commit 27925e2

Browse files
committed
doc: wip
1 parent 5005786 commit 27925e2

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

src/flow.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,18 @@ export { FlowProviderMixin };
77
/**
88
* This is the flow implementation.
99
* It holds all the steps.
10+
* Declares the following properties:
11+
* -steps
12+
* -autostart
13+
* @param manager {object} The kronos-service-manager
14+
* @param name {string} The name of this step
15+
* @param stepDefinition {object} The definition used to create the step
1016
*/
1117
export class Flow extends Step {
18+
19+
/**
20+
* @return {string} 'kronos-flow'
21+
*/
1222
static get name() {
1323
return 'kronos-flow';
1424
}
@@ -17,14 +27,6 @@ export class Flow extends Step {
1727
return 'General step collection';
1828
}
1929

20-
/**
21-
* Declares the following properties:
22-
* steps
23-
* autostart
24-
* @param manager {object} The kronos-service-manager
25-
* @param name {string} The name of this step
26-
* @param stepDefinition {object} The definition used to create the step
27-
*/
2830
constructor(config, owner) {
2931
super(config, owner);
3032

0 commit comments

Comments
 (0)