Files
simple-mail-cleaner/backend/node_modules/bullmq/dist/esm/interfaces/retry-options.d.ts
2026-01-22 15:49:12 +01:00

14 lines
308 B
TypeScript

/**
* Retry method options
*/
export interface RetryOptions {
/**
* Attempts made counter is reset to zero when retrying the job.
*/
resetAttemptsMade?: boolean;
/**
* Attempts started counter is reset to zero when retrying the job.
*/
resetAttemptsStarted?: boolean;
}