10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
declare enum ExecutionStatus {
|
|
Waiting = "waiting",
|
|
Processing = "processing",
|
|
Completed = "completed",
|
|
Failed = "failed",
|
|
Scheduled = "scheduled"
|
|
}
|
|
|
|
export { ExecutionStatus };
|