node-libcurl
Version:
The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl
16 lines • 342 B
TypeScript
/**
* Options to be used with {@link Easy.pause | `Easy#pause`} and {@link Curl.pause | `Curl#pause`}.
*
* `CURLPAUSE_RECV_CONT` becomes `CurlPause.RecvCont`
*
* @public
*/
export declare enum CurlPause {
Recv = 1,
RecvCont = 0,
Send = 4,
SendCont = 0,
All = 5,
Cont = 0
}
//# sourceMappingURL=CurlPause.d.ts.map