delay.interface.d.ts 112 B

1234
  1. export interface IDelay {
  2. apply: () => Promise<unknown>;
  3. setAttemptNumber: (attempt: number) => void;
  4. }