mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-31 09:07:25 +02:00
14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
export const ExecutionStatusList = [
|
|
'canceled' as const,
|
|
'crashed' as const,
|
|
'error' as const,
|
|
'new' as const,
|
|
'running' as const,
|
|
'success' as const,
|
|
'unknown' as const,
|
|
'waiting' as const,
|
|
'warning' as const,
|
|
];
|
|
|
|
export type ExecutionStatus = (typeof ExecutionStatusList)[number];
|