Files
n8n-enterprise-unlocked/packages/workflow/src/ExecutionStatus.ts
T
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';