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.

backoff.d.ts 332B

1234567891011121314
  1. export declare class ExponentialBackoff {
  2. private readonly ms;
  3. private readonly max;
  4. private readonly factor;
  5. private readonly jitter;
  6. attempts: number;
  7. constructor(opts?: {
  8. min?: number;
  9. max?: number;
  10. });
  11. duration(): number;
  12. reset(): void;
  13. }
  14. //# sourceMappingURL=backoff.d.ts.map