UNPKG

node-libcurl

Version:

The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl

19 lines (18 loc) 511 B
/** * 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. */ // https://github.com/curl/curl/blob/e1be8254534898fccafc5d6cd04f6235f283cfbd/include/curl/curl.h#L361-L366 /** * Special return codes for `READFUNCTION` option * * `CURL_READFUNC_ABORT` becomes `CurlReadFunc.Abort` * * @public */ export enum CurlReadFunc { Abort = 0x10000000, Pause = 0x10000001, }