declare module 'it-pair' { export type Duplex = [Stream, Stream] interface Stream { sink: (source: Iterable) => void source: Record } }