UNPKG

@pushrocks/smartrx

Version:

smart wrapper for rxjs

12 lines (11 loc) 447 B
export { Observable, Subject, fromEvent, ReplaySubject, Subscription } from 'rxjs'; export type { Observer } from 'rxjs'; import { startWith, takeUntil, map, debounce, debounceTime, throttleTime } from 'rxjs/operators'; export declare const ops: { debounce: typeof debounce; debounceTime: typeof debounceTime; map: typeof map; startWith: typeof startWith; takeUntil: typeof takeUntil; throttleTime: typeof throttleTime; };