mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-28 22:19:41 -08:00
d6b2ae0255
refactor: Stop using `.d.ts` files for type-collection files
12 lines
155 B
TypeScript
12 lines
155 B
TypeScript
export type ExecutionStatus =
|
|
| 'canceled'
|
|
| 'crashed'
|
|
| 'error'
|
|
| 'failed'
|
|
| 'new'
|
|
| 'running'
|
|
| 'success'
|
|
| 'unknown'
|
|
| 'waiting'
|
|
| 'warning';
|