smartrx/ts/smartrx.plugins.rxjs.ts

14 lines
320 B
TypeScript
Raw Normal View History

2020-05-27 18:49:44 +00:00
// this file is intended to keep the bundle size down
2022-01-24 02:44:13 +00:00
export { Observable, Subject, fromEvent, ReplaySubject, Subscription, Observer } from 'rxjs';
2020-05-27 19:44:35 +00:00
2020-07-12 01:53:32 +00:00
import { startWith, takeUntil, map, debounce, debounceTime } from 'rxjs/operators';
2020-05-27 19:44:35 +00:00
export const ops = {
2020-07-12 01:53:32 +00:00
debounce,
debounceTime,
map,
2020-05-27 19:44:35 +00:00
startWith,
takeUntil,
};