mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
4 lines
457 B
TypeScript
4 lines
457 B
TypeScript
import { IHttpClientResponse } from '@actions/http-client/interfaces';
|
|
export declare function retry(name: string, operation: () => Promise<IHttpClientResponse>, customErrorMessages: Map<number, string>, maxAttempts: number): Promise<IHttpClientResponse>;
|
|
export declare function retryHttpClientRequest(name: string, method: () => Promise<IHttpClientResponse>, customErrorMessages?: Map<number, string>, maxAttempts?: number): Promise<IHttpClientResponse>;
|