mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-26 06:40:51 +02:00
11 lines
143 B
TypeScript
11 lines
143 B
TypeScript
export type ExecutionStatus =
|
|
| 'canceled'
|
|
| 'crashed'
|
|
| 'error'
|
|
| 'new'
|
|
| 'running'
|
|
| 'success'
|
|
| 'unknown'
|
|
| 'waiting'
|
|
| 'warning';
|