mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-21 09:31:44 -08:00
13 lines
209 B
TypeScript
13 lines
209 B
TypeScript
export const ExecutionStatusList = [
|
|
'canceled',
|
|
'crashed',
|
|
'error',
|
|
'new',
|
|
'running',
|
|
'success',
|
|
'unknown',
|
|
'waiting',
|
|
] as const;
|
|
|
|
export type ExecutionStatus = (typeof ExecutionStatusList)[number];
|