6 lines
127 B
TypeScript
6 lines
127 B
TypeScript
export const OrderStatus = {
|
|
PROCESSING: 'processing',
|
|
COMPLETED: 'completed',
|
|
CANCELLED: 'cancelled',
|
|
} as const;
|