UNPKG

got-cjs

Version:

Human-friendly and powerful HTTP request library for Node.js

6 lines (5 loc) 258 B
/// <reference types="node" /> import type { Writable, Readable } from 'stream'; import type { ClientRequest } from 'http'; declare function isClientRequest(clientRequest: Writable | Readable): clientRequest is ClientRequest; export default isClientRequest;