(executionId: string)
| 9 | } |
| 10 | |
| 11 | export function abortManualExecution(executionId: string): boolean { |
| 12 | const abort = activeExecutionAborters.get(executionId) |
| 13 | if (!abort) { |
| 14 | return false |
| 15 | } |
| 16 | |
| 17 | abort() |
| 18 | return true |
| 19 | } |
no test coverage detected