Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678910111213141516 |
- interface ExponentialBackoffOptions {
- min?: number;
- max?: number;
- }
- export default class ExponentialBackoff {
- private readonly ms;
- private readonly max;
- private readonly factor;
- private numAttempts;
- constructor(opts?: ExponentialBackoffOptions);
- get attempts(): number;
- duration(): number;
- reset(): void;
- }
- export {};
- //# sourceMappingURL=ExponentialBackoff.d.ts.map
|