fix(deps/ts_plugins): Update @types/node dependency and adjust rxjs operator exports ordering

This commit is contained in:
2025-04-25 08:48:08 +00:00
parent a0df30adf1
commit 23c6e17536
5 changed files with 6958 additions and 4229 deletions

View File

@ -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.'
}

View File

@ -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
};