awscdk-construct-pipeline-pause-scheduler
Version:
CDK Construct for toggling MediaLive pipeline pause/unpause
9 lines (8 loc) • 336 B
TypeScript
import type { Readable } from "stream";
/**
* @internal
* @param stream - to be split.
* @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]>;