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