fix(core): update

This commit is contained in:
2023-06-10 13:33:09 +02:00
parent 093b1dd7a9
commit ca22a417da
5 changed files with 4586 additions and 14969 deletions

View File

@@ -4,7 +4,7 @@ export { Observable, Subject, fromEvent, ReplaySubject, Subscription } from 'rxj
export type { Observer } from 'rxjs';
import { startWith, takeUntil, map, debounce, debounceTime } from 'rxjs/operators';
import { startWith, takeUntil, map, debounce, debounceTime, throttleTime } from 'rxjs/operators';
export const ops = {
debounce,
@@ -12,4 +12,5 @@ export const ops = {
map,
startWith,
takeUntil,
throttleTime,
};