12345678910111213141516171819 |
- export const TRACK_TASK_STATUS = {
- INIT: 0,
- READY: 1,
- FINISH: 9,
- };
- export type TrackTaskStatusKey = keyof typeof TRACK_TASK_STATUS;
- export const TRACK_TASK_DETAIL_STATUS = {
- INIT: 0,
- RUNNING: 1,
- FINISH: 9,
- };
- export type TrackTaskDetailStatusKey = keyof typeof TRACK_TASK_DETAIL_STATUS;
|