smartrx/ts/smartrx.plugins.rxjs.ts

21 lines
478 B
TypeScript
Raw Normal View History

2020-05-27 18:49:44 +00:00
// this file is intended to keep the bundle size down
2023-11-01 14:12:53 +01:00
export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from, of } from 'rxjs';
2022-08-05 12:50:37 +02:00
export type { Observer } from 'rxjs';
2020-05-27 19:44:35 +00:00
import { buffer, bufferCount, bufferTime, debounce, debounceTime, filter, map, startWith, takeUntil, throttleTime } from 'rxjs/operators';
2020-05-27 19:44:35 +00:00
export const ops = {
buffer,
bufferCount,
bufferTime,
2020-07-12 01:53:32 +00:00
debounce,
debounceTime,
filter,
2020-07-12 01:53:32 +00:00
map,
2020-05-27 19:44:35 +00:00
startWith,
takeUntil,
throttleTime
2020-05-27 19:44:35 +00:00
};