UNPKG

@typespec/ts-http-runtime

Version:

Isomorphic client library for making HTTP requests in node.js and browser.

19 lines 458 B
/** * Re-export of `NodeJS.ReadableStream` for use in platform-neutral code. * * @public */ export type NodeReadableStream = NodeJS.ReadableStream; /** * Re-export of `Buffer` for use in platform-neutral code. * * @public */ export type NodeBuffer = Buffer; /** * Re-export of the Web `ReadableStream` for use in platform-neutral code. * * @public */ export type WebReadableStream<R = any> = ReadableStream<R>; //# sourceMappingURL=types.d.ts.map