Mirror: 馃帺 A tiny but capable push & pull stream library for TypeScript and Flow
at v1.4.2 164 B view raw
1import { Operator } from '../wonka_types'; 2 3export const tapAll: <A>( 4 onStart: () => void, 5 onPush: (value: A) => void, 6 onEnd: () => void 7) => Operator<A, A>;