smartrx/ts/smartrx.plugins.rxjs.ts
2020-05-27 19:44:35 +00:00

16 lines
234 B
TypeScript

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