| 7 | }; |
| 8 | |
| 9 | export interface IIntegrationFlow { |
| 10 | preRun?(): Promise<boolean>; |
| 11 | run(options: IIntegrationFlowOptions): Promise<boolean>; |
| 12 | postRun?(): Promise<void>; |
| 13 | } |
| 14 | |
| 15 | export abstract class IntegrationFlow implements IIntegrationFlow { |
| 16 | protected i18nBranchName?: string; |
no outgoing calls
no test coverage detected