/** * Stream common - finishedAll * * Shared implementation for waiting on multiple streams to finish. */ import type { PipelineStreamLike } from "../types.js"; /** * Create a `finishedAll` function bound to a platform-specific `finished`. */ export declare function createFinishedAll(finished: (stream: PipelineStreamLike) => Promise): (streams: ReadonlyArray) => Promise;