node-libcurl
Version:
The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl
15 lines • 570 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Multi = void 0;
/**
* 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.
*/
require("./moduleSetup");
const bindings = require('../lib/binding/node_libcurl.node');
// @ts-expect-error - we are abusing TS merging here to have sane types for the addon classes
const Multi = bindings.Multi;
exports.Multi = Multi;
//# sourceMappingURL=Multi.js.map