node-libcurl
Version:
The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl
24 lines • 527 B
TypeScript
/**
* Copyright (c) Jonathan Cardoso Machado. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* Object with constants for option `PROXYTYPE`
*
* `CURLPROXY_HTTP` becomes `CurlProxy.Http`
*
* @public
*/
export declare enum CurlProxy {
Http = 0,
Http_1_0 = 1,
Https = 2,
Https2 = 3,
Socks4 = 4,
Socks5 = 5,
Socks4A = 6,
Socks5Hostname = 7
}
//# sourceMappingURL=CurlProxy.d.ts.map