smartrx/ts/smartrx.plugins.rxjs.ts
2020-06-26 00:52:51 +00:00

12 lines
243 B
TypeScript

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