UNPKG

awscdk-construct-pipeline-pause-scheduler

Version:
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]>;