mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-03 17:07:29 -08:00
11 lines
142 B
TypeScript
11 lines
142 B
TypeScript
|
export type ExecutionStatus =
|
||
|
| 'canceled'
|
||
|
| 'crashed'
|
||
|
| 'error'
|
||
|
| 'failed'
|
||
|
| 'new'
|
||
|
| 'running'
|
||
|
| 'success'
|
||
|
| 'unknown'
|
||
|
| 'waiting';
|