fix(deps/ts_plugins): Update @types/node dependency and adjust rxjs operator exports ordering
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @pushrocks/commitinfo
|
||||
* autocreated commitinfo by @push.rocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/smartrx',
|
||||
version: '3.0.8',
|
||||
description: 'smart wrapper for rxjs'
|
||||
version: '3.0.9',
|
||||
description: 'A smart wrapper for rxjs to manage and extend observables.'
|
||||
}
|
||||
|
@ -4,14 +4,17 @@ export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from, of }
|
||||
|
||||
export type { Observer } from 'rxjs';
|
||||
|
||||
import { startWith, takeUntil, map, debounce, debounceTime, throttleTime, filter } from 'rxjs/operators';
|
||||
import { buffer, bufferCount, bufferTime, debounce, debounceTime, filter, map, startWith, takeUntil, throttleTime } from 'rxjs/operators';
|
||||
|
||||
export const ops = {
|
||||
buffer,
|
||||
bufferCount,
|
||||
bufferTime,
|
||||
debounce,
|
||||
debounceTime,
|
||||
filter,
|
||||
map,
|
||||
startWith,
|
||||
takeUntil,
|
||||
throttleTime,
|
||||
filter,
|
||||
throttleTime
|
||||
};
|
||||
|
Reference in New Issue
Block a user