@typespec/ts-http-runtime
Version:
Isomorphic client library for making HTTP requests in node.js and browser.
13 lines • 370 B
TypeScript
/**
* Checks if the given value is a Node.js readable stream.
*
* @internal
*/
export declare function isNodeReadableStream(x: unknown): x is NodeJS.ReadableStream;
/**
* Checks if the given value is a web ReadableStream.
*
* @internal
*/
export declare function isWebReadableStream(x: unknown): x is ReadableStream;
//# sourceMappingURL=typeGuards-node.d.ts.map