smartrx/ts/smartrx.plugins.rxjs.ts
2023-11-01 14:12:53 +01:00

18 lines
407 B
TypeScript

// this file is intended to keep the bundle size down
export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from, of } from 'rxjs';
export type { Observer } from 'rxjs';
import { startWith, takeUntil, map, debounce, debounceTime, throttleTime, filter } from 'rxjs/operators';
export const ops = {
debounce,
debounceTime,
map,
startWith,
takeUntil,
throttleTime,
filter,
};