You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- export declare type JitterType = "none" | "full";
- export declare type BackoffOptions = Partial<IBackOffOptions>;
- export interface IBackOffOptions {
- delayFirstAttempt: boolean;
- jitter: JitterType;
- maxDelay: number;
- numOfAttempts: number;
- retry: (e: any, attemptNumber: number) => boolean | Promise<boolean>;
- startingDelay: number;
- timeMultiple: number;
- }
- export declare function getSanitizedOptions(options: BackoffOptions): IBackOffOptions;
|