11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
|
const orderStatus = {
|
||
|
CANCELLED: 'cancelled',
|
||
|
PROGRESS: 'progress',
|
||
|
PENDING: 'pending',
|
||
|
WORKING: 'working',
|
||
|
COMPLETE: 'complete',
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
orderStatus
|
||
|
}
|