export type QueueState =
  | 'INIT'
  | 'STARTUP'
  | 'RUNNING'
  | 'ENDING'
  | 'WAITING'
