UNPKG

wonka

Version:

A fast push & pull stream library for Reason, loosely following the [callbag spec](https://github.com/callbag/callbag)

8 lines (6 loc) 164 B
import { Operator } from '../wonka_types'; export const tapAll: <A>( onStart: () => void, onPush: (value: A) => void, onEnd: () => void ) => Operator<A, A>;