Task cancelling frontend (#522)

This commit is contained in:
Kerem Yilmaz
2024-06-26 15:57:24 -07:00
committed by GitHub
parent bf81b7df53
commit 47c1a6f0e8
4 changed files with 98 additions and 9 deletions

View File

@@ -19,6 +19,7 @@ export const Status = {
Completed: "completed",
Queued: "queued",
TimedOut: "timed_out",
Canceled: "canceled",
} as const;
export type Status = (typeof Status)[keyof typeof Status];