Initial commit of working RSS Aggregator build
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user