smartrx/ts/smartrx.plugins.rxjs.ts
2023-07-24 13:09:38 +02:00

17 lines
385 B
TypeScript

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