2020-05-27 18:49:44 +00:00
|
|
|
// this file is intended to keep the bundle size down
|
|
|
|
|
2022-01-24 02:44:13 +00:00
|
|
|
export { Observable, Subject, fromEvent, ReplaySubject, Subscription, Observer } from 'rxjs';
|
2020-05-27 19:44:35 +00:00
|
|
|
|
2020-07-12 01:53:32 +00:00
|
|
|
import { startWith, takeUntil, map, debounce, debounceTime } from 'rxjs/operators';
|
2020-05-27 19:44:35 +00:00
|
|
|
|
|
|
|
export const ops = {
|
2020-07-12 01:53:32 +00:00
|
|
|
debounce,
|
|
|
|
debounceTime,
|
|
|
|
map,
|
2020-05-27 19:44:35 +00:00
|
|
|
startWith,
|
|
|
|
takeUntil,
|
|
|
|
};
|