/** * 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. */ /** * @public */ export interface CurlInfo { /** * The session's active socket. * * @Link [`CURLINFO_ACTIVESOCKET`](https://curl.haxx.se/libcurl/c/CURLINFO_ACTIVESOCKET.html) */ readonly ACTIVESOCKET: 'ACTIVESOCKET'; /** * The time it took from the start until the SSL connect/handshake with the remote host was completed as a double in number of seconds. * * @Link [`CURLINFO_APPCONNECT_TIME`](https://curl.haxx.se/libcurl/c/CURLINFO_APPCONNECT_TIME.html) */ readonly APPCONNECT_TIME: 'APPCONNECT_TIME'; /** * The time it took from the start until the SSL connect/handshake with the remote host was completed in number of microseconds. (Added in ) * * @Link [`CURLINFO_APPCONNECT_TIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_APPCONNECT_TIME_T.html) */ readonly APPCONNECT_TIME_T: 'APPCONNECT_TIME_T'; /** * Get the default value for . * * @Link [`CURLINFO_CAINFO`](https://curl.haxx.se/libcurl/c/CURLINFO_CAINFO.html) */ readonly CAINFO: 'CAINFO'; /** * Get the default value for . * * @Link [`CURLINFO_CAPATH`](https://curl.haxx.se/libcurl/c/CURLINFO_CAPATH.html) */ readonly CAPATH: 'CAPATH'; /** * Certificate chain. * * @Link [`CURLINFO_CERTINFO`](https://curl.haxx.se/libcurl/c/CURLINFO_CERTINFO.html) */ readonly CERTINFO: 'CERTINFO'; /** * Whether or not a time conditional was met or 304 HTTP response. * * @Link [`CURLINFO_CONDITION_UNMET`](https://curl.haxx.se/libcurl/c/CURLINFO_CONDITION_UNMET.html) */ readonly CONDITION_UNMET: 'CONDITION_UNMET'; /** * The ID of the last connection used by the transfer. (Added in ) * * @Link [`CURLINFO_CONN_ID`](https://curl.haxx.se/libcurl/c/CURLINFO_CONN_ID.html) */ readonly CONN_ID: 'CONN_ID'; /** * The time it took from the start until the connect to the remote host (or proxy) was completed. As a double. * * @Link [`CURLINFO_CONNECT_TIME`](https://curl.haxx.se/libcurl/c/CURLINFO_CONNECT_TIME.html) */ readonly CONNECT_TIME: 'CONNECT_TIME'; /** * The time it took from the start until the connect to the remote host (or proxy) was completed. In microseconds. See . * * @Link [`CURLINFO_CONNECT_TIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_CONNECT_TIME_T.html) */ readonly CONNECT_TIME_T: 'CONNECT_TIME_T'; /** * (Deprecated) Content length from the Content-Length header. * * @Link [`CURLINFO_CONTENT_LENGTH_DOWNLOAD`](https://curl.haxx.se/libcurl/c/CURLINFO_CONTENT_LENGTH_DOWNLOAD.html) */ readonly CONTENT_LENGTH_DOWNLOAD: 'CONTENT_LENGTH_DOWNLOAD'; /** * Content length from the Content-Length header. * * @Link [`CURLINFO_CONTENT_LENGTH_DOWNLOAD_T`](https://curl.haxx.se/libcurl/c/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.html) */ readonly CONTENT_LENGTH_DOWNLOAD_T: 'CONTENT_LENGTH_DOWNLOAD_T'; /** * (Deprecated) Upload size. * * @Link [`CURLINFO_CONTENT_LENGTH_UPLOAD`](https://curl.haxx.se/libcurl/c/CURLINFO_CONTENT_LENGTH_UPLOAD.html) */ readonly CONTENT_LENGTH_UPLOAD: 'CONTENT_LENGTH_UPLOAD'; /** * Upload size. * * @Link [`CURLINFO_CONTENT_LENGTH_UPLOAD_T`](https://curl.haxx.se/libcurl/c/CURLINFO_CONTENT_LENGTH_UPLOAD_T.html) */ readonly CONTENT_LENGTH_UPLOAD_T: 'CONTENT_LENGTH_UPLOAD_T'; /** * Content type from the Content-Type: header. We recommend using instead. * * @Link [`CURLINFO_CONTENT_TYPE`](https://curl.haxx.se/libcurl/c/CURLINFO_CONTENT_TYPE.html) */ readonly CONTENT_TYPE: 'CONTENT_TYPE'; /** * List of all known cookies. * * @Link [`CURLINFO_COOKIELIST`](https://curl.haxx.se/libcurl/c/CURLINFO_COOKIELIST.html) */ readonly COOKIELIST: 'COOKIELIST'; /** * Amount of TLS early data sent (in number of bytes) when CURLSSLOPT_EARLYDATA is enabled. * * @Link [`CURLINFO_EARLYDATA_SENT_T`](https://curl.haxx.se/libcurl/c/CURLINFO_EARLYDATA_SENT_T.html) */ readonly EARLYDATA_SENT_T: 'EARLYDATA_SENT_T'; /** * Last used HTTP method. * * @Link [`CURLINFO_EFFECTIVE_METHOD`](https://curl.haxx.se/libcurl/c/CURLINFO_EFFECTIVE_METHOD.html) */ readonly EFFECTIVE_METHOD: 'EFFECTIVE_METHOD'; /** * Last used URL. * * @Link [`CURLINFO_EFFECTIVE_URL`](https://curl.haxx.se/libcurl/c/CURLINFO_EFFECTIVE_URL.html) */ readonly EFFECTIVE_URL: 'EFFECTIVE_URL'; /** * Remote time of the retrieved document. * * @Link [`CURLINFO_FILETIME`](https://curl.haxx.se/libcurl/c/CURLINFO_FILETIME.html) */ readonly FILETIME: 'FILETIME'; /** * Remote time of the retrieved document. * * @Link [`CURLINFO_FILETIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_FILETIME_T.html) */ readonly FILETIME_T: 'FILETIME_T'; /** * The entry path after logging in to an FTP server. * * @Link [`CURLINFO_FTP_ENTRY_PATH`](https://curl.haxx.se/libcurl/c/CURLINFO_FTP_ENTRY_PATH.html) */ readonly FTP_ENTRY_PATH: 'FTP_ENTRY_PATH'; /** * Number of bytes of all headers received. * * @Link [`CURLINFO_HEADER_SIZE`](https://curl.haxx.se/libcurl/c/CURLINFO_HEADER_SIZE.html) */ readonly HEADER_SIZE: 'HEADER_SIZE'; /** * Last proxy CONNECT response code. * * @Link [`CURLINFO_HTTP_CONNECTCODE`](https://curl.haxx.se/libcurl/c/CURLINFO_HTTP_CONNECTCODE.html) */ readonly HTTP_CONNECTCODE: 'HTTP_CONNECTCODE'; /** * The http version used in the connection. * * @Link [`CURLINFO_HTTP_VERSION`](https://curl.haxx.se/libcurl/c/CURLINFO_HTTP_VERSION.html) */ readonly HTTP_VERSION: 'HTTP_VERSION'; /** * Available HTTP authentication methods. * * @Link [`CURLINFO_HTTPAUTH_AVAIL`](https://curl.haxx.se/libcurl/c/CURLINFO_HTTPAUTH_AVAIL.html) */ readonly HTTPAUTH_AVAIL: 'HTTPAUTH_AVAIL'; /** * Used HTTP authentication method. * * @Link [`CURLINFO_HTTPAUTH_USED`](https://curl.haxx.se/libcurl/c/CURLINFO_HTTPAUTH_USED.html) */ readonly HTTPAUTH_USED: 'HTTPAUTH_USED'; /** * (Deprecated) Last socket used. * * @Link [`CURLINFO_LASTSOCKET`](https://curl.haxx.se/libcurl/c/CURLINFO_LASTSOCKET.html) */ readonly LASTSOCKET: 'LASTSOCKET'; /** * Source IP address of the last connection. * * @Link [`CURLINFO_LOCAL_IP`](https://curl.haxx.se/libcurl/c/CURLINFO_LOCAL_IP.html) */ readonly LOCAL_IP: 'LOCAL_IP'; /** * Source port number of the last connection. * * @Link [`CURLINFO_LOCAL_PORT`](https://curl.haxx.se/libcurl/c/CURLINFO_LOCAL_PORT.html) */ readonly LOCAL_PORT: 'LOCAL_PORT'; /** * Time from start until name resolving completed as a double. * * @Link [`CURLINFO_NAMELOOKUP_TIME`](https://curl.haxx.se/libcurl/c/CURLINFO_NAMELOOKUP_TIME.html) */ readonly NAMELOOKUP_TIME: 'NAMELOOKUP_TIME'; /** * Time from start until name resolving completed in number of microseconds. * * @Link [`CURLINFO_NAMELOOKUP_TIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_NAMELOOKUP_TIME_T.html) */ readonly NAMELOOKUP_TIME_T: 'NAMELOOKUP_TIME_T'; /** * Number of new successful connections used for previous transfer. * * @Link [`CURLINFO_NUM_CONNECTS`](https://curl.haxx.se/libcurl/c/CURLINFO_NUM_CONNECTS.html) */ readonly NUM_CONNECTS: 'NUM_CONNECTS'; /** * The errno from the last failure to connect. * * @Link [`CURLINFO_OS_ERRNO`](https://curl.haxx.se/libcurl/c/CURLINFO_OS_ERRNO.html) */ readonly OS_ERRNO: 'OS_ERRNO'; /** * The time it took from the start until the last byte is sent by libcurl. In microseconds. (Added in ) * * @Link [`CURLINFO_POSTTRANSFER_TIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_POSTTRANSFER_TIME_T.html) */ readonly POSTTRANSFER_TIME_T: 'POSTTRANSFER_TIME_T'; /** * The time it took from the start until the file transfer is just about to begin. This includes all pre-transfer commands and negotiations that are specific to the particular protocol(s) involved. * * @Link [`CURLINFO_PRETRANSFER_TIME`](https://curl.haxx.se/libcurl/c/CURLINFO_PRETRANSFER_TIME.html) */ readonly PRETRANSFER_TIME: 'PRETRANSFER_TIME'; /** * The time it took from the start until the file transfer is just about to begin. This includes all pre-transfer commands and negotiations that are specific to the particular protocol(s) involved. In microseconds. * * @Link [`CURLINFO_PRETRANSFER_TIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_PRETRANSFER_TIME_T.html) */ readonly PRETRANSFER_TIME_T: 'PRETRANSFER_TIME_T'; /** * Destination IP address of the last connection. * * @Link [`CURLINFO_PRIMARY_IP`](https://curl.haxx.se/libcurl/c/CURLINFO_PRIMARY_IP.html) */ readonly PRIMARY_IP: 'PRIMARY_IP'; /** * Destination port of the last connection. * * @Link [`CURLINFO_PRIMARY_PORT`](https://curl.haxx.se/libcurl/c/CURLINFO_PRIMARY_PORT.html) */ readonly PRIMARY_PORT: 'PRIMARY_PORT'; /** * User's private data pointer. * * @Link [`CURLINFO_PRIVATE`](https://curl.haxx.se/libcurl/c/CURLINFO_PRIVATE.html) */ readonly PRIVATE: 'PRIVATE'; /** * (Deprecated) The protocol used for the connection. * * @Link [`CURLINFO_PROTOCOL`](https://curl.haxx.se/libcurl/c/CURLINFO_PROTOCOL.html) */ readonly PROTOCOL: 'PROTOCOL'; /** * Detailed proxy error. * * @Link [`CURLINFO_PROXY_ERROR`](https://curl.haxx.se/libcurl/c/CURLINFO_PROXY_ERROR.html) */ readonly PROXY_ERROR: 'PROXY_ERROR'; /** * Proxy certificate verification result. * * @Link [`CURLINFO_PROXY_SSL_VERIFYRESULT`](https://curl.haxx.se/libcurl/c/CURLINFO_PROXY_SSL_VERIFYRESULT.html) */ readonly PROXY_SSL_VERIFYRESULT: 'PROXY_SSL_VERIFYRESULT'; /** * Available HTTP proxy authentication methods. * * @Link [`CURLINFO_PROXYAUTH_AVAIL`](https://curl.haxx.se/libcurl/c/CURLINFO_PROXYAUTH_AVAIL.html) */ readonly PROXYAUTH_AVAIL: 'PROXYAUTH_AVAIL'; /** * Used HTTP proxy authentication methods. * * @Link [`CURLINFO_PROXYAUTH_USED`](https://curl.haxx.se/libcurl/c/CURLINFO_PROXYAUTH_USED.html) */ readonly PROXYAUTH_USED: 'PROXYAUTH_USED'; /** * The time during which the transfer was held in a waiting queue before it could start for real in number of microseconds. (Added in ) * * @Link [`CURLINFO_QUEUE_TIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_QUEUE_TIME_T.html) */ readonly QUEUE_TIME_T: 'QUEUE_TIME_T'; /** * Total number of redirects that were followed. * * @Link [`CURLINFO_REDIRECT_COUNT`](https://curl.haxx.se/libcurl/c/CURLINFO_REDIRECT_COUNT.html) */ readonly REDIRECT_COUNT: 'REDIRECT_COUNT'; /** * The time it took for all redirection steps include name lookup, connect, pretransfer and transfer before final transaction was started. So, this is zero if no redirection took place. As a double. * * @Link [`CURLINFO_REDIRECT_TIME`](https://curl.haxx.se/libcurl/c/CURLINFO_REDIRECT_TIME.html) */ readonly REDIRECT_TIME: 'REDIRECT_TIME'; /** * The time it took for all redirection steps include name lookup, connect, pretransfer and transfer before final transaction was started. So, this is zero if no redirection took place. In number of microseconds. * * @Link [`CURLINFO_REDIRECT_TIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_REDIRECT_TIME_T.html) */ readonly REDIRECT_TIME_T: 'REDIRECT_TIME_T'; /** * URL a redirect would take you to, had you enabled redirects. * * @Link [`CURLINFO_REDIRECT_URL`](https://curl.haxx.se/libcurl/c/CURLINFO_REDIRECT_URL.html) */ readonly REDIRECT_URL: 'REDIRECT_URL'; /** * Referrer header. * * @Link [`CURLINFO_REFERER`](https://curl.haxx.se/libcurl/c/CURLINFO_REFERER.html) */ readonly REFERER: 'REFERER'; /** * Number of bytes sent in the issued HTTP requests. * * @Link [`CURLINFO_REQUEST_SIZE`](https://curl.haxx.se/libcurl/c/CURLINFO_REQUEST_SIZE.html) */ readonly REQUEST_SIZE: 'REQUEST_SIZE'; /** * Last received response code. * * @Link [`CURLINFO_RESPONSE_CODE`](https://curl.haxx.se/libcurl/c/CURLINFO_RESPONSE_CODE.html) */ readonly RESPONSE_CODE: 'RESPONSE_CODE'; /** * The value from the Retry-After header. * * @Link [`CURLINFO_RETRY_AFTER`](https://curl.haxx.se/libcurl/c/CURLINFO_RETRY_AFTER.html) */ readonly RETRY_AFTER: 'RETRY_AFTER'; /** * The RTSP client CSeq that is expected next. * * @Link [`CURLINFO_RTSP_CLIENT_CSEQ`](https://curl.haxx.se/libcurl/c/CURLINFO_RTSP_CLIENT_CSEQ.html) */ readonly RTSP_CLIENT_CSEQ: 'RTSP_CLIENT_CSEQ'; /** * RTSP CSeq last received. * * @Link [`CURLINFO_RTSP_CSEQ_RECV`](https://curl.haxx.se/libcurl/c/CURLINFO_RTSP_CSEQ_RECV.html) */ readonly RTSP_CSEQ_RECV: 'RTSP_CSEQ_RECV'; /** * The RTSP server CSeq that is expected next. * * @Link [`CURLINFO_RTSP_SERVER_CSEQ`](https://curl.haxx.se/libcurl/c/CURLINFO_RTSP_SERVER_CSEQ.html) */ readonly RTSP_SERVER_CSEQ: 'RTSP_SERVER_CSEQ'; /** * RTSP session ID. * * @Link [`CURLINFO_RTSP_SESSION_ID`](https://curl.haxx.se/libcurl/c/CURLINFO_RTSP_SESSION_ID.html) */ readonly RTSP_SESSION_ID: 'RTSP_SESSION_ID'; /** * The scheme used for the connection. * * @Link [`CURLINFO_SCHEME`](https://curl.haxx.se/libcurl/c/CURLINFO_SCHEME.html) */ readonly SCHEME: 'SCHEME'; /** * (Deprecated) Number of bytes downloaded. * * @Link [`CURLINFO_SIZE_DOWNLOAD`](https://curl.haxx.se/libcurl/c/CURLINFO_SIZE_DOWNLOAD.html) */ readonly SIZE_DOWNLOAD: 'SIZE_DOWNLOAD'; /** * Number of bytes downloaded. * * @Link [`CURLINFO_SIZE_DOWNLOAD_T`](https://curl.haxx.se/libcurl/c/CURLINFO_SIZE_DOWNLOAD_T.html) */ readonly SIZE_DOWNLOAD_T: 'SIZE_DOWNLOAD_T'; /** * (Deprecated) Number of bytes uploaded. * * @Link [`CURLINFO_SIZE_UPLOAD`](https://curl.haxx.se/libcurl/c/CURLINFO_SIZE_UPLOAD.html) */ readonly SIZE_UPLOAD: 'SIZE_UPLOAD'; /** * Number of bytes uploaded. * * @Link [`CURLINFO_SIZE_UPLOAD_T`](https://curl.haxx.se/libcurl/c/CURLINFO_SIZE_UPLOAD_T.html) */ readonly SIZE_UPLOAD_T: 'SIZE_UPLOAD_T'; /** * (Deprecated) Average download speed. * * @Link [`CURLINFO_SPEED_DOWNLOAD`](https://curl.haxx.se/libcurl/c/CURLINFO_SPEED_DOWNLOAD.html) */ readonly SPEED_DOWNLOAD: 'SPEED_DOWNLOAD'; /** * Average download speed. * * @Link [`CURLINFO_SPEED_DOWNLOAD_T`](https://curl.haxx.se/libcurl/c/CURLINFO_SPEED_DOWNLOAD_T.html) */ readonly SPEED_DOWNLOAD_T: 'SPEED_DOWNLOAD_T'; /** * (Deprecated) Average upload speed. * * @Link [`CURLINFO_SPEED_UPLOAD`](https://curl.haxx.se/libcurl/c/CURLINFO_SPEED_UPLOAD.html) */ readonly SPEED_UPLOAD: 'SPEED_UPLOAD'; /** * Average upload speed in number of bytes per second. * * @Link [`CURLINFO_SPEED_UPLOAD_T`](https://curl.haxx.se/libcurl/c/CURLINFO_SPEED_UPLOAD_T.html) */ readonly SPEED_UPLOAD_T: 'SPEED_UPLOAD_T'; /** * A list of OpenSSL crypto engines. * * @Link [`CURLINFO_SSL_ENGINES`](https://curl.haxx.se/libcurl/c/CURLINFO_SSL_ENGINES.html) */ readonly SSL_ENGINES: 'SSL_ENGINES'; /** * Certificate verification result. * * @Link [`CURLINFO_SSL_VERIFYRESULT`](https://curl.haxx.se/libcurl/c/CURLINFO_SSL_VERIFYRESULT.html) */ readonly SSL_VERIFYRESULT: 'SSL_VERIFYRESULT'; /** * The time it took from the start until the first byte is received by libcurl. As a double. * * @Link [`CURLINFO_STARTTRANSFER_TIME`](https://curl.haxx.se/libcurl/c/CURLINFO_STARTTRANSFER_TIME.html) */ readonly STARTTRANSFER_TIME: 'STARTTRANSFER_TIME'; /** * The time it took from the start until the first byte is received by libcurl. In microseconds. * * @Link [`CURLINFO_STARTTRANSFER_TIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_STARTTRANSFER_TIME_T.html) */ readonly STARTTRANSFER_TIME_T: 'STARTTRANSFER_TIME_T'; /** * (Deprecated) TLS session info that can be used for further processing. See . Use instead. * * @Link [`CURLINFO_TLS_SESSION`](https://curl.haxx.se/libcurl/c/CURLINFO_TLS_SESSION.html) */ readonly TLS_SESSION: 'TLS_SESSION'; /** * TLS session info that can be used for further processing. * * @Link [`CURLINFO_TLS_SSL_PTR`](https://curl.haxx.se/libcurl/c/CURLINFO_TLS_SSL_PTR.html) */ readonly TLS_SSL_PTR: 'TLS_SSL_PTR'; /** * Total time of previous transfer. * * @Link [`CURLINFO_TOTAL_TIME`](https://curl.haxx.se/libcurl/c/CURLINFO_TOTAL_TIME.html) */ readonly TOTAL_TIME: 'TOTAL_TIME'; /** * Total time of previous transfer. * * @Link [`CURLINFO_TOTAL_TIME_T`](https://curl.haxx.se/libcurl/c/CURLINFO_TOTAL_TIME_T.html) */ readonly TOTAL_TIME_T: 'TOTAL_TIME_T'; /** * Whether the proxy was used (Added in ). * * @Link [`CURLINFO_USED_PROXY`](https://curl.haxx.se/libcurl/c/CURLINFO_USED_PROXY.html) */ readonly USED_PROXY: 'USED_PROXY'; /** * The ID of the transfer. (Added in ) * * @Link [`CURLINFO_XFER_ID`](https://curl.haxx.se/libcurl/c/CURLINFO_XFER_ID.html) */ readonly XFER_ID: 'XFER_ID'; } /** * @public */ export type CurlInfoName = 'ACTIVESOCKET' | 'APPCONNECT_TIME' | 'APPCONNECT_TIME_T' | 'CAINFO' | 'CAPATH' | 'CERTINFO' | 'CONDITION_UNMET' | 'CONN_ID' | 'CONNECT_TIME' | 'CONNECT_TIME_T' | 'CONTENT_LENGTH_DOWNLOAD' | 'CONTENT_LENGTH_DOWNLOAD_T' | 'CONTENT_LENGTH_UPLOAD' | 'CONTENT_LENGTH_UPLOAD_T' | 'CONTENT_TYPE' | 'COOKIELIST' | 'EARLYDATA_SENT_T' | 'EFFECTIVE_METHOD' | 'EFFECTIVE_URL' | 'FILETIME' | 'FILETIME_T' | 'FTP_ENTRY_PATH' | 'HEADER_SIZE' | 'HTTP_CONNECTCODE' | 'HTTP_VERSION' | 'HTTPAUTH_AVAIL' | 'HTTPAUTH_USED' | 'LASTSOCKET' | 'LOCAL_IP' | 'LOCAL_PORT' | 'NAMELOOKUP_TIME' | 'NAMELOOKUP_TIME_T' | 'NUM_CONNECTS' | 'OS_ERRNO' | 'POSTTRANSFER_TIME_T' | 'PRETRANSFER_TIME' | 'PRETRANSFER_TIME_T' | 'PRIMARY_IP' | 'PRIMARY_PORT' | 'PRIVATE' | 'PROTOCOL' | 'PROXY_ERROR' | 'PROXY_SSL_VERIFYRESULT' | 'PROXYAUTH_AVAIL' | 'PROXYAUTH_USED' | 'QUEUE_TIME_T' | 'REDIRECT_COUNT' | 'REDIRECT_TIME' | 'REDIRECT_TIME_T' | 'REDIRECT_URL' | 'REFERER' | 'REQUEST_SIZE' | 'RESPONSE_CODE' | 'RETRY_AFTER' | 'RTSP_CLIENT_CSEQ' | 'RTSP_CSEQ_RECV' | 'RTSP_SERVER_CSEQ' | 'RTSP_SESSION_ID' | 'SCHEME' | 'SIZE_DOWNLOAD' | 'SIZE_DOWNLOAD_T' | 'SIZE_UPLOAD' | 'SIZE_UPLOAD_T' | 'SPEED_DOWNLOAD' | 'SPEED_DOWNLOAD_T' | 'SPEED_UPLOAD' | 'SPEED_UPLOAD_T' | 'SSL_ENGINES' | 'SSL_VERIFYRESULT' | 'STARTTRANSFER_TIME' | 'STARTTRANSFER_TIME_T' | 'TLS_SESSION' | 'TLS_SSL_PTR' | 'TOTAL_TIME' | 'TOTAL_TIME_T' | 'USED_PROXY' | 'XFER_ID'; //# sourceMappingURL=CurlInfo.d.ts.map