mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-06-11 01:37:52 +02: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];
|