smartrx/ts/smartrx.plugins.rxjs.ts
2020-07-12 01:53:32 +00:00

14 lines
296 B
TypeScript

// this file is intended to keep the bundle size down
export { Observable, Subject, fromEvent, ReplaySubject } from 'rxjs';
import { startWith, takeUntil, map, debounce, debounceTime } from 'rxjs/operators';
export const ops = {
debounce,
debounceTime,
map,
startWith,
takeUntil,
};