17 lines
336 B
TypeScript
17 lines
336 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
|
|
export type TaskReadStatus =
|
|
(typeof TaskReadStatus)[keyof typeof TaskReadStatus];
|
|
|
|
export const TaskReadStatus = {
|
|
inbox: "inbox",
|
|
in_progress: "in_progress",
|
|
review: "review",
|
|
done: "done",
|
|
} as const;
|