-
-
Notifications
You must be signed in to change notification settings - Fork 750
Expand file tree
/
Copy pathstep.js
More file actions
26 lines (23 loc) · 797 Bytes
/
step.js
File metadata and controls
26 lines (23 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// refactored step class, moved to helper
/**
* Step is wrapper around a helper method.
* It is used to create a new step that is a combination of other steps.
*/
const BaseStep = require('./step/base')
const StepConfig = require('./step/config')
const Step = require('./step/helper')
/**
* MetaStep is a step that is used to wrap other steps.
* It is used to create a new step that is a combination of other steps.
* It is used to create a new step that is a combination of other steps.
*/
const MetaStep = require('./step/meta')
/**
* Step used to execute a single function
*/
const FuncStep = require('./step/func')
module.exports = Step
module.exports.MetaStep = MetaStep
module.exports.BaseStep = BaseStep
module.exports.StepConfig = StepConfig
module.exports.FuncStep = FuncStep