delayed-error.d.ts 265 B

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