Files
n8n-enterprise-unlocked/packages/workflow/src/execution-status.ts
कारतोफ्फेलस्क्रिप्ट™ 3a2a70f193 chore: Enfore consistent file-name casing on all backend packages (#15755)
2025-05-27 16:45:50 +02:00

13 lines
209 B
TypeScript

export const ExecutionStatusList = [
'canceled',
'crashed',
'error',
'new',
'running',
'success',
'unknown',
'waiting',
] as const;
export type ExecutionStatus = (typeof ExecutionStatusList)[number];