7 lines
119 B
TypeScript
7 lines
119 B
TypeScript
export enum TaskStatuses {
|
|
success = 'success',
|
|
failed = 'failed',
|
|
working = 'working',
|
|
pending = 'pending',
|
|
}
|