waiting-error.d.ts 271 B

12345678910
  1. export declare const WAITING_ERROR = "bullmq:movedToWait";
  2. /**
  3. * WaitingError
  4. *
  5. * Error to be thrown when job is moved to wait or prioritized state
  6. * from job in active state.
  7. */
  8. export declare class WaitingError extends Error {
  9. constructor(message?: string);
  10. }