UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

13 lines (12 loc) 338 B
/** * @internal * Alias prevents compiler from turning * ReadableStream into ReadableStream<any>, which is incompatible * with the NodeJS.ReadableStream global type. */ type ReadableStreamType = ReadableStream; /** * @internal */ export declare const isReadableStream: (stream: unknown) => stream is ReadableStreamType; export {};