smartrx/ts/smartrx.plugins.rxjs.ts

12 lines
243 B
TypeScript
Raw Normal View History

2020-05-27 18:49:44 +00:00
// this file is intended to keep the bundle size down
2020-06-26 00:52:51 +00:00
export { Observable, Subject, fromEvent, ReplaySubject } from 'rxjs';
2020-05-27 19:44:35 +00:00
import { startWith, takeUntil, map } from 'rxjs/operators';
export const ops = {
startWith,
takeUntil,
map
};