mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-26 17:49:15 +01:00
11 lines
556 B
TypeScript
11 lines
556 B
TypeScript
export declare const TASK_STATUS_PENDING = "pending";
|
|
export declare const TASK_STATUS_ASSIGNED = "assigned";
|
|
export declare const TASK_STATUS_RUNNING = "running";
|
|
export declare const TASK_STATUS_FINISHED = "finished";
|
|
export declare const TASK_STATUS_ERROR = "error";
|
|
export declare const TASK_STATUS_CANCELLED = "cancelled";
|
|
export declare const TASK_STATUS_ABNORMAL = "abnormal";
|
|
export declare const TASK_MODE_RANDOM = "random";
|
|
export declare const TASK_MODE_ALL_NODES = "all-nodes";
|
|
export declare const TASK_MODE_SELECTED_NODES = "selected-nodes";
|