8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
export const CuttingStatus = {
|
|
IN_PROGRESS: 'in_progress',
|
|
COMPLETED: 'completed',
|
|
PENDING_VERIFICATION: 'pending_verification',
|
|
VERIFIED: 'verified',
|
|
REJECTED: 'rejected',
|
|
} as const;
|