n8n/packages/workflow/src/ExecutionStatus.ts
Iván Ovejero d6b2ae0255
refactor: Stop using .d.ts files for type-collection files (no-changelog) (#6634)
refactor: Stop using `.d.ts` files for type-collection files
2023-07-10 19:35:34 +02:00

12 lines
155 B
TypeScript

export type ExecutionStatus =
| 'canceled'
| 'crashed'
| 'error'
| 'failed'
| 'new'
| 'running'
| 'success'
| 'unknown'
| 'waiting'
| 'warning';