declare enum TaskStatus { IDLE = "IDLE", RUNNING = "RUNNING", CANCELED = "CANCELED", FINISHED = "FINISHED" } export default TaskStatus;