mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-18 20:48:29 +02:00
feat: add @actions/cache
This commit is contained in:
parent
b15fb7d098
commit
16e8c96a41
1932 changed files with 261172 additions and 10 deletions
33
node_modules/@azure/ms-rest-js/es/lib/proxyAgent.d.ts
generated
vendored
Normal file
33
node_modules/@azure/ms-rest-js/es/lib/proxyAgent.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
/// <reference types="node" />
|
||||
import * as http from "http";
|
||||
import * as https from "https";
|
||||
import { ProxySettings } from "./serviceClient";
|
||||
import { HttpHeadersLike } from "./httpHeaders";
|
||||
export declare type ProxyAgent = {
|
||||
isHttps: boolean;
|
||||
agent: http.Agent | https.Agent;
|
||||
};
|
||||
export declare function createProxyAgent(requestUrl: string, proxySettings: ProxySettings, headers?: HttpHeadersLike): ProxyAgent;
|
||||
export interface HttpsProxyOptions {
|
||||
host: string;
|
||||
port: number;
|
||||
localAddress?: string;
|
||||
proxyAuth?: string;
|
||||
headers?: {
|
||||
[key: string]: any;
|
||||
};
|
||||
ca?: Buffer[];
|
||||
servername?: string;
|
||||
key?: Buffer;
|
||||
cert?: Buffer;
|
||||
}
|
||||
interface HttpsOverHttpsOptions {
|
||||
maxSockets?: number;
|
||||
ca?: Buffer[];
|
||||
key?: Buffer;
|
||||
cert?: Buffer;
|
||||
proxy?: HttpsProxyOptions;
|
||||
}
|
||||
export declare function createTunnel(isRequestHttps: boolean, isProxyHttps: boolean, tunnelOptions: HttpsOverHttpsOptions): http.Agent | https.Agent;
|
||||
export {};
|
||||
//# sourceMappingURL=proxyAgent.d.ts.map
|
Loading…
Add table
Add a link
Reference in a new issue