mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
14 lines
221 B
TypeScript
14 lines
221 B
TypeScript
export const ExecutionStatusList = [
|
|
'canceled',
|
|
'crashed',
|
|
'error',
|
|
'new',
|
|
'running',
|
|
'success',
|
|
'unknown',
|
|
'waiting',
|
|
'warning',
|
|
] as const;
|
|
|
|
export type ExecutionStatus = (typeof ExecutionStatusList)[number];
|