16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
|
|
export type ApprovalCreateStatus =
|
|
(typeof ApprovalCreateStatus)[keyof typeof ApprovalCreateStatus];
|
|
|
|
export const ApprovalCreateStatus = {
|
|
pending: "pending",
|
|
approved: "approved",
|
|
rejected: "rejected",
|
|
} as const;
|