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