wonka
Version:
A fast push & pull stream library for Reason, loosely following the [callbag spec](https://github.com/callbag/callbag)
33 lines (29 loc) • 1.34 kB
TypeScript
/* sources */
export * from './sources/wonka_source_fromArray';
export * from './sources/wonka_source_fromList';
export * from './sources/wonka_source_fromValue';
export * from './sources/wonka_source_make';
export * from './sources/wonka_source_makeSubject';
export * from './sources/wonka_source_primitives';
/* operators */
export * from './operators/wonka_operator_combine';
export * from './operators/wonka_operator_concatMap';
export * from './operators/wonka_operator_filter';
export * from './operators/wonka_operator_map';
export * from './operators/wonka_operator_mergeMap';
export * from './operators/wonka_operator_scan';
export * from './operators/wonka_operator_share';
export * from './operators/wonka_operator_skip';
export * from './operators/wonka_operator_skipUntil';
export * from './operators/wonka_operator_skipWhile';
export * from './operators/wonka_operator_switchMap';
export * from './operators/wonka_operator_take';
export * from './operators/wonka_operator_takeLast';
export * from './operators/wonka_operator_takeUntil';
export * from './operators/wonka_operator_takeWhile';
export * from './operators/wonka_operator_tap';
export * from './operators/wonka_operator_tapAll';
/* sinks */
export * from './sinks/wonka_sink_publish';
export * from './sinks/wonka_sink_subscribe';
export * from './web/wonkaJs';