@types/global-tunnel-ng
Version:
TypeScript definitions for global-tunnel-ng
38 lines (29 loc) • 1.21 kB
Markdown
> `npm install --save @types/global-tunnel-ng`
This package contains type definitions for global-tunnel-ng (https://github.com/salesforce/global-tunnel).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/global-tunnel-ng.
````ts
export function initialize(options?: Options | string): void;
export function end(): void;
export const proxyUrl: string | null;
export const proxyConfig: Options | null;
export const isProxying: boolean;
export interface Options {
host: string;
port: number;
connect?: "neither" | "https" | "both" | undefined;
protocol?: "http:" | "https:" | undefined;
proxyAuth?: string | undefined;
sockets?: number | undefined;
proxyHttpsOptions?: { [key: string]: any } | undefined;
originHttpsOptions?: { [key: string]: any } | undefined;
}
````
* Last updated: Tue, 07 Nov 2023 03:09:37 GMT
* Dependencies: none
These definitions were written by [BendingBender](https://github.com/BendingBender).