Remove retry from the AsyncRetry namespace

This commit is contained in:
Pablo Rodríguez
2018-03-31 13:37:43 +02:00
parent e43d96d643
commit 93d5d645d3
-2
View File
@@ -10,8 +10,6 @@ declare function AsyncRetry<A>(
): Promise<A>;
declare namespace AsyncRetry {
function retry<A>(fn: RetryFunction<A>, opts: Options): Promise<A>;
interface Options {
retries?: number;
factor?: number;