mirror of
https://gitea.com/actions/setup-go.git
synced 2024-11-15 00:25:39 +01:00
13 lines
364 B
TypeScript
13 lines
364 B
TypeScript
|
/**
|
||
|
* 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;
|
||
|
}
|