void/build/lib/typings/stream.d.ts
2024-09-10 19:37:36 -07:00

9 lines
261 B
TypeScript

declare namespace NodeJS {
type ComposeFnParam = (source: any) => void;
interface ReadWriteStream {
compose<T extends NodeJS.ReadableStream>(
stream: T | ComposeFnParam | Iterable<T> | AsyncIterable<T>,
options?: { signal: AbortSignal },
): T;
}
}