mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 20:20:07 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
import { HttpClient } from '@actions/http-client';
|
|
/**
|
|
* 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;
|
|
}
|