waiting-children-error.d.ts 307 B

1234567891011
  1. export declare const WAITING_CHILDREN_ERROR = "bullmq:movedToWaitingChildren";
  2. /**
  3. * WaitingChildrenError
  4. *
  5. * Error to be thrown when job is moved to waiting-children state
  6. * from job in active state.
  7. *
  8. */
  9. export declare class WaitingChildrenError extends Error {
  10. constructor(message?: string);
  11. }