8 lines
132 B
JavaScript
8 lines
132 B
JavaScript
|
export const STATUS = {
|
||
|
PRISTINE: 'pristine',
|
||
|
STARTED: 'started',
|
||
|
ERROR: 'has_error',
|
||
|
FAILED: 'failed',
|
||
|
SUCCESS: 'success',
|
||
|
};
|