UNPKG

cdk-amazon-chime-resources

Version:

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

9 lines (8 loc) 339 B
/// <reference types="node" /> import type { Readable } from "stream"; /** * @param stream * @returns stream split into two identical streams. */ export declare function splitStream(stream: Readable): Promise<[Readable, Readable]>; export declare function splitStream(stream: ReadableStream): Promise<[ReadableStream, ReadableStream]>;