mirror of
https://github.com/github/codeql-action.git
synced 2025-12-30 03:00:13 +08:00
13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
import { HttpClient } from '@actions/http-client/index';
|
|
/**
|
|
* Used for managing http clients during either upload or download
|
|
*/
|
|
export declare class HttpManager {
|
|
private clients;
|
|
private userAgent;
|
|
constructor(clientCount: number, userAgent: string);
|
|
getClient(index: number): HttpClient;
|
|
disposeAndReplaceClient(index: number): void;
|
|
disposeAndReplaceAllClients(): void;
|
|
}
|