Mirror: 馃帺 A tiny but capable push & pull stream library for TypeScript and Flow
at v3.2.1 175 B view raw
1import { Operator } from '../wonka_types'; 2 3export const onPush: <A>(f: (value: A) => void) => Operator<A, A>; 4export const tap: <A>(f: (value: A) => void) => Operator<A, A>;