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