node-libcurl
Version:
The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl
20 lines • 490 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 bitmasks to be used with `HEADEROPT`.
*
* Available since libcurl version \>= 7.37.0
*
* `CURLHEADER_UNIFIED` becomes `CurlHeader.Unified`
*
* @public
*/
export declare enum CurlHeader {
Unified = 0,
Separate = 1
}
//# sourceMappingURL=CurlHeader.d.ts.map