UNPKG

exponential-backoff

Version:

A utility that allows retrying a function with an exponential delay between attempts.

7 lines (6 loc) 214 B
import { Delay } from "../delay.base"; export declare class SkipFirstDelay extends Delay { apply(): Promise<unknown>; private readonly isFirstAttempt; protected readonly numOfDelayedAttempts: number; }