fix(core): update

This commit is contained in:
2020-07-12 01:53:32 +00:00
parent 037e33caee
commit 610c1d6beb
7 changed files with 7220 additions and 773 deletions

View File

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