File size: 112 Bytes
2b24a67
 
 
 
1
2
3
4
5
export interface IDelay {
    apply: () => Promise<unknown>;
    setAttemptNumber: (attempt: number) => void;
}