| 8 | export type ScriptFunction = (sentence: ISentence) => IPerform; |
| 9 | |
| 10 | export interface ScriptConfig { |
| 11 | scriptType: commandType; |
| 12 | scriptFunction: ScriptFunction; |
| 13 | next?: boolean; |
| 14 | } |
| 15 | |
| 16 | export interface IConfigInterface extends ScriptConfig { |
| 17 | scriptString: string; |
nothing calls this directly
no outgoing calls
no test coverage detected