n8n/packages/workflow/src/ExecutionStatus.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
293 B
TypeScript
Raw Normal View History

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];