mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08: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];
|