fix(core): update

This commit is contained in:
Philipp Kunz 2020-05-27 19:44:35 +00:00
parent 66ee8ba0df
commit b05a8e4fa4

View File

@ -4,4 +4,12 @@ export {
Observable,
Subject,
fromEvent
} from 'rxjs';
} from 'rxjs';
import { startWith, takeUntil, map } from 'rxjs/operators';
export const ops = {
startWith,
takeUntil,
map
};