retry-options.d.ts 308 B

12345678910111213
  1. /**
  2. * Retry method options
  3. */
  4. export interface RetryOptions {
  5. /**
  6. * Attempts made counter is reset to zero when retrying the job.
  7. */
  8. resetAttemptsMade?: boolean;
  9. /**
  10. * Attempts started counter is reset to zero when retrying the job.
  11. */
  12. resetAttemptsStarted?: boolean;
  13. }