UNPKG

255 BTypeScriptView Raw
1declare function proxy(options: proxy.Options): (urlStr: string) => void;
2declare namespace proxy {
3 interface Options {
4 proxy?: string;
5 httpProxy?: string;
6 httpsProxy?: string;
7 noProxy?: string;
8 }
9}
10export = proxy;