7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
export const CuttingStatus = {
|
|
IN_PROGRESS: 'in_progress',
|
|
COMPLETED: 'completed',
|
|
VERIFIED: 'verified',
|
|
REJECTED: 'rejected',
|
|
} as const;
|