(statement: unknown, { cycle, extras }: { cycle: 'Application' | 'Revert'; extras?: Record<string, unknown> })
| 1809 | static prepareAction(statement: Record<string, unknown>, { cycle, extras }: { cycle: 'Application' | 'Revert'; extras?: Record<string, unknown> }): ActionInstance | null; |
| 1810 | static prepareAction(statement: string | Record<string, unknown>, { cycle, extras }: { cycle: 'Application' | 'Revert'; extras?: Record<string, unknown> }): ActionInstance | null; |
| 1811 | static prepareAction (statement: unknown, { cycle, extras }: { cycle: 'Application' | 'Revert'; extras?: Record<string, unknown> }): ActionInstance | null { |
| 1812 | return _prepareAction(this.asEngine(), statement as string | Record<string, unknown>, { cycle, extras }); |
| 1813 | } |
| 1814 | |
| 1815 | static async revert (statement: unknown = null, shouldAdvance = true, shouldStepBack = true): Promise<{ advance: boolean; step: boolean } | void> { |
| 1816 | return _revert(this.asEngine(), statement, shouldAdvance, shouldStepBack); |
no test coverage detected