๐Ÿ“ฆ n8n-io / n8n

๐Ÿ“„ execution-status.ts ยท 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13export const ExecutionStatusList = [
	'canceled',
	'crashed',
	'error',
	'new',
	'running',
	'success',
	'unknown',
	'waiting',
] as const;

export type ExecutionStatus = (typeof ExecutionStatusList)[number];