aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/exponential-backoff/dist/delay/delay.interface.d.ts
blob: 6f2a10bdaa931ad0d6792928e3e5a7e3bed1dfef (plain)
1
2
3
4
export interface IDelay {
    apply: () => Promise<unknown>;
    setAttemptNumber: (attempt: number) => void;
}