UNPKG

sdin

Version:

JavaScript package builder.

6 lines (5 loc) 291 B
import { OrNone } from './declaration'; export type StreamOrNull = OrNone<NodeJS.ReadWriteStream>; export type StreamTransfer = (prev: any) => StreamOrNull; export type StreamSource = StreamTransfer | StreamOrNull; export declare function pipeline(...sources: StreamSource[]): Promise<any>;