UNPKG

206 BTypeScriptView Raw
1export declare const singlePromise: <T>(cb: () => Promise<T>, key: string) => Promise<T>;
2export declare const retryPromise: (cb: () => Promise<boolean>, maxNumberOfRetries?: number) => Promise<boolean>;