UNPKG

awscdk-construct-scte-scheduler

Version:

AWS CDK Construct for scheduling SCTE-35 events using the MediaLive schedule API

9 lines (8 loc) 336 B
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]>;