remove bin link

This commit is contained in:
OpportunityLiu
2020-03-31 19:08:21 +08:00
Unverified
parent 2836246660
commit 19f24a28c9
144 changed files with 12197 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
/**
* Internal class for retries
*/
export declare class RetryHelper {
private maxAttempts;
private minSeconds;
private maxSeconds;
constructor(maxAttempts: number, minSeconds: number, maxSeconds: number);
execute<T>(action: () => Promise<T>, isRetryable?: (e: Error) => boolean): Promise<T>;
private getSleepAmount;
private sleep;
}