- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
16 lines
325 B
TypeScript
16 lines
325 B
TypeScript
/**
|
|
* Settings for backing off failed jobs.
|
|
*
|
|
* @see {@link https://docs.bullmq.io/guide/retrying-failing-jobs}
|
|
*/
|
|
export interface BackoffOptions {
|
|
/**
|
|
* Name of the backoff strategy.
|
|
*/
|
|
type: 'fixed' | 'exponential' | (string & {});
|
|
/**
|
|
* Delay in milliseconds.
|
|
*/
|
|
delay?: number;
|
|
}
|