···11-open Wonka_types;
22-33-let tapAll: (
44- ~onStart: (.unit) => unit,
55- ~onPush: (.'a) => unit,
66- ~onEnd: (.unit) => unit,
77- sourceT('a),
88- sinkT('a)
99-) => unit;
+3-2
src/wonka.d.ts
···1212export * from './operators/wonka_operator_filter';
1313export * from './operators/wonka_operator_map';
1414export * from './operators/wonka_operator_mergeMap';
1515+export * from './operators/wonka_operator_onEnd';
1616+export * from './operators/wonka_operator_onPush';
1717+export * from './operators/wonka_operator_onStart';
1518export * from './operators/wonka_operator_scan';
1619export * from './operators/wonka_operator_share';
1720export * from './operators/wonka_operator_skip';
···2225export * from './operators/wonka_operator_takeLast';
2326export * from './operators/wonka_operator_takeUntil';
2427export * from './operators/wonka_operator_takeWhile';
2525-export * from './operators/wonka_operator_tap';
2626-export * from './operators/wonka_operator_tapAll';
27282829/* sinks */
2930export * from './sinks/wonka_sink_publish';