modes.ts 192 B

1234567
  1. export const Modes = Object.freeze({
  2. RETURN: Symbol('mode:return'),
  3. BREAK: Symbol('mode:break'),
  4. PAUSE: Symbol('mode:pause'),
  5. RUN: Symbol('mode:run'),
  6. ABORT: Symbol('mode:abort')
  7. });