astro-ghostcms/.pnpm-store/v3/files/64/549b7a822e057e3005f7dd86c68...

6 lines
293 B
Plaintext

/// <reference types="node" resolution-mode="require"/>
import type { Writable, Readable } from 'node:stream';
import type { ClientRequest } from 'node:http';
declare function isClientRequest(clientRequest: Writable | Readable): clientRequest is ClientRequest;
export default isClientRequest;