From 56ae84339841e61bcd2c3208848901b4d1b0b499 Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Tue, 17 Mar 2026 16:26:05 -0700 Subject: [PATCH] =?UTF-8?q?deps-upgrade(rxjs-types):=20=E2=AC=86=EF=B8=8F?= =?UTF-8?q?=20Update=20RxJS=20and=20TypeScript=20type=20definitions=20for?= =?UTF-8?q?=20timer,=20using,=20zip,=20and=20testing=20modules?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../dist/types/internal/observable/timer.d.ts | 126 ------------------ .../types/internal/observable/timer.d.ts.map | 1 - .../dist/types/internal/observable/using.d.ts | 30 ----- .../types/internal/observable/using.d.ts.map | 1 - .../dist/types/internal/observable/zip.d.ts | 7 - .../internal/testing/HotObservable.d.ts.map | 1 - .../internal/testing/SubscriptionLog.d.ts | 6 - .../internal/testing/SubscriptionLog.d.ts.map | 1 - .../testing/SubscriptionLoggable.d.ts | 9 -- .../testing/SubscriptionLoggable.d.ts.map | 1 - .../types/internal/testing/TestMessage.d.ts | 7 - .../internal/testing/TestMessage.d.ts.map | 1 - .../types/internal/testing/TestScheduler.d.ts | 88 ------------ .../internal/testing/TestScheduler.d.ts.map | 1 - 14 files changed, 280 deletions(-) delete mode 100644 run/node_modules/rxjs/dist/types/internal/observable/timer.d.ts delete mode 100644 run/node_modules/rxjs/dist/types/internal/observable/timer.d.ts.map delete mode 100644 run/node_modules/rxjs/dist/types/internal/observable/using.d.ts delete mode 100644 run/node_modules/rxjs/dist/types/internal/observable/using.d.ts.map delete mode 100644 run/node_modules/rxjs/dist/types/internal/observable/zip.d.ts delete mode 100644 run/node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts.map delete mode 100644 run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts delete mode 100644 run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts.map delete mode 100644 run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts delete mode 100644 run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts.map delete mode 100644 run/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts delete mode 100644 run/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts.map delete mode 100644 run/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts delete mode 100644 run/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts.map diff --git a/run/node_modules/rxjs/dist/types/internal/observable/timer.d.ts b/run/node_modules/rxjs/dist/types/internal/observable/timer.d.ts deleted file mode 100644 index d3f396e..0000000 --- a/run/node_modules/rxjs/dist/types/internal/observable/timer.d.ts +++ /dev/null @@ -1,126 +0,0 @@ -import { Observable } from '../Observable'; -import { SchedulerLike } from '../types'; -/** - * Creates an observable that will wait for a specified time period, or exact date, before - * emitting the number 0. - * - * Used to emit a notification after a delay. - * - * This observable is useful for creating delays in code, or racing against other values - * for ad-hoc timeouts. - * - * The `delay` is specified by default in milliseconds, however providing a custom scheduler could - * create a different behavior. - * - * ## Examples - * - * Wait 3 seconds and start another observable - * - * You might want to use `timer` to delay subscription to an - * observable by a set amount of time. Here we use a timer with - * {@link concatMapTo} or {@link concatMap} in order to wait - * a few seconds and start a subscription to a source. - * - * ```ts - * import { of, timer, concatMap } from 'rxjs'; - * - * // This could be any observable - * const source = of(1, 2, 3); - * - * timer(3000) - * .pipe(concatMap(() => source)) - * .subscribe(console.log); - * ``` - * - * Take all values until the start of the next minute - * - * Using a `Date` as the trigger for the first emission, you can - * do things like wait until midnight to fire an event, or in this case, - * wait until a new minute starts (chosen so the example wouldn't take - * too long to run) in order to stop watching a stream. Leveraging - * {@link takeUntil}. - * - * ```ts - * import { interval, takeUntil, timer } from 'rxjs'; - * - * // Build a Date object that marks the - * // next minute. - * const currentDate = new Date(); - * const startOfNextMinute = new Date( - * currentDate.getFullYear(), - * currentDate.getMonth(), - * currentDate.getDate(), - * currentDate.getHours(), - * currentDate.getMinutes() + 1 - * ); - * - * // This could be any observable stream - * const source = interval(1000); - * - * const result = source.pipe( - * takeUntil(timer(startOfNextMinute)) - * ); - * - * result.subscribe(console.log); - * ``` - * - * ### Known Limitations - * - * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled. - * - * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and - * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission - * should occur will be incorrect. In this case, it would be best to do your own calculations - * ahead of time, and pass a `number` in as the `dueTime`. - * - * @param due If a `number`, the amount of time in milliseconds to wait before emitting. - * If a `Date`, the exact time at which to emit. - * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}. - */ -export declare function timer(due: number | Date, scheduler?: SchedulerLike): Observable<0>; -/** - * Creates an observable that starts an interval after a specified delay, emitting incrementing numbers -- starting at `0` -- - * on each interval after words. - * - * The `delay` and `intervalDuration` are specified by default in milliseconds, however providing a custom scheduler could - * create a different behavior. - * - * ## Example - * - * ### Start an interval that starts right away - * - * Since {@link interval} waits for the passed delay before starting, - * sometimes that's not ideal. You may want to start an interval immediately. - * `timer` works well for this. Here we have both side-by-side so you can - * see them in comparison. - * - * Note that this observable will never complete. - * - * ```ts - * import { timer, interval } from 'rxjs'; - * - * timer(0, 1000).subscribe(n => console.log('timer', n)); - * interval(1000).subscribe(n => console.log('interval', n)); - * ``` - * - * ### Known Limitations - * - * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled. - * - * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and - * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission - * should occur will be incorrect. In this case, it would be best to do your own calculations - * ahead of time, and pass a `number` in as the `startDue`. - * @param startDue If a `number`, is the time to wait before starting the interval. - * If a `Date`, is the exact time at which to start the interval. - * @param intervalDuration The delay between each value emitted in the interval. Passing a - * negative number here will result in immediate completion after the first value is emitted, as though - * no `intervalDuration` was passed at all. - * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}. - */ -export declare function timer(startDue: number | Date, intervalDuration: number, scheduler?: SchedulerLike): Observable; -/** - * @deprecated The signature allowing `undefined` to be passed for `intervalDuration` will be removed in v8. Use the `timer(dueTime, scheduler?)` signature instead. - */ -export declare function timer(dueTime: number | Date, unused: undefined, scheduler?: SchedulerLike): Observable<0>; -//# sourceMappingURL=timer.d.ts.map \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/observable/timer.d.ts.map b/run/node_modules/rxjs/dist/types/internal/observable/timer.d.ts.map deleted file mode 100644 index a1e7151..0000000 --- a/run/node_modules/rxjs/dist/types/internal/observable/timer.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"timer.d.ts","sourceRoot":"","sources":["../../../../src/internal/observable/timer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAKzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4EG;AACH,wBAAgB,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,EAAE,SAAS,CAAC,EAAE,aAAa,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;AAEpF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,wBAAgB,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,EAAE,gBAAgB,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,aAAa,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;AAExH;;GAEG;AACH,wBAAgB,KAAK,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,CAAC,EAAE,aAAa,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/observable/using.d.ts b/run/node_modules/rxjs/dist/types/internal/observable/using.d.ts deleted file mode 100644 index 14cbdd8..0000000 --- a/run/node_modules/rxjs/dist/types/internal/observable/using.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { Observable } from '../Observable'; -import { Unsubscribable, ObservableInput, ObservedValueOf } from '../types'; -/** - * Creates an Observable that uses a resource which will be disposed at the same time as the Observable. - * - * Use it when you catch yourself cleaning up after an Observable. - * - * `using` is a factory operator, which accepts two functions. First function returns a disposable resource. - * It can be an arbitrary object that implements `unsubscribe` method. Second function will be injected with - * that object and should return an Observable. That Observable can use resource object during its execution. - * Both functions passed to `using` will be called every time someone subscribes - neither an Observable nor - * resource object will be shared in any way between subscriptions. - * - * When Observable returned by `using` is subscribed, Observable returned from the second function will be subscribed - * as well. All its notifications (nexted values, completion and error events) will be emitted unchanged by the output - * Observable. If however someone unsubscribes from the Observable or source Observable completes or errors by itself, - * the `unsubscribe` method on resource object will be called. This can be used to do any necessary clean up, which - * otherwise would have to be handled by hand. Note that complete or error notifications are not emitted when someone - * cancels subscription to an Observable via `unsubscribe`, so `using` can be used as a hook, allowing you to make - * sure that all resources which need to exist during an Observable execution will be disposed at appropriate time. - * - * @see {@link defer} - * - * @param resourceFactory A function which creates any resource object that implements `unsubscribe` method. - * @param observableFactory A function which creates an Observable, that can use injected resource object. - * @return An Observable that behaves the same as Observable returned by `observableFactory`, but - * which - when completed, errored or unsubscribed - will also call `unsubscribe` on created resource object. - */ -export declare function using>(resourceFactory: () => Unsubscribable | void, observableFactory: (resource: Unsubscribable | void) => T | void): Observable>; -//# sourceMappingURL=using.d.ts.map \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/observable/using.d.ts.map b/run/node_modules/rxjs/dist/types/internal/observable/using.d.ts.map deleted file mode 100644 index 0231d00..0000000 --- a/run/node_modules/rxjs/dist/types/internal/observable/using.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"using.d.ts","sourceRoot":"","sources":["../../../../src/internal/observable/using.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAI5E;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAgB,KAAK,CAAC,CAAC,SAAS,eAAe,CAAC,GAAG,CAAC,EAClD,eAAe,EAAE,MAAM,cAAc,GAAG,IAAI,EAC5C,iBAAiB,EAAE,CAAC,QAAQ,EAAE,cAAc,GAAG,IAAI,KAAK,CAAC,GAAG,IAAI,GAC/D,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAchC"} \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/observable/zip.d.ts b/run/node_modules/rxjs/dist/types/internal/observable/zip.d.ts deleted file mode 100644 index 67a41d1..0000000 --- a/run/node_modules/rxjs/dist/types/internal/observable/zip.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Observable } from '../Observable'; -import { ObservableInputTuple } from '../types'; -export declare function zip(sources: [...ObservableInputTuple]): Observable; -export declare function zip(sources: [...ObservableInputTuple], resultSelector: (...values: A) => R): Observable; -export declare function zip(...sources: [...ObservableInputTuple]): Observable; -export declare function zip(...sourcesAndResultSelector: [...ObservableInputTuple, (...values: A) => R]): Observable; -//# sourceMappingURL=zip.d.ts.map \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts.map b/run/node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts.map deleted file mode 100644 index 9cada0a..0000000 --- a/run/node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"HotObservable.d.ts","sourceRoot":"","sources":["../../../../src/internal/testing/HotObservable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAGrC,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAI9D,qBAAa,aAAa,CAAC,CAAC,CAAE,SAAQ,OAAO,CAAC,CAAC,CAAE,YAAW,oBAAoB;IAQ3D,QAAQ,EAAE,WAAW,EAAE;IAPnC,aAAa,EAAE,eAAe,EAAE,CAAM;IAC7C,SAAS,EAAE,SAAS,CAAC;IAErB,kBAAkB,EAAE,MAAM,MAAM,CAAC;IAEjC,oBAAoB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;gBAE3B,QAAQ,EAAE,WAAW,EAAE,EAAE,SAAS,EAAE,SAAS;IAmBhE,KAAK;CAcN"} \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts b/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts deleted file mode 100644 index f029e80..0000000 --- a/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -export declare class SubscriptionLog { - subscribedFrame: number; - unsubscribedFrame: number; - constructor(subscribedFrame: number, unsubscribedFrame?: number); -} -//# sourceMappingURL=SubscriptionLog.d.ts.map \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts.map b/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts.map deleted file mode 100644 index 4b57b08..0000000 --- a/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"SubscriptionLog.d.ts","sourceRoot":"","sources":["../../../../src/internal/testing/SubscriptionLog.ts"],"names":[],"mappings":"AAAA,qBAAa,eAAe;IACP,eAAe,EAAE,MAAM;IACvB,iBAAiB,EAAE,MAAM;gBADzB,eAAe,EAAE,MAAM,EACvB,iBAAiB,GAAE,MAAiB;CAExD"} \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts b/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts deleted file mode 100644 index 2b21758..0000000 --- a/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Scheduler } from '../Scheduler'; -import { SubscriptionLog } from './SubscriptionLog'; -export declare class SubscriptionLoggable { - subscriptions: SubscriptionLog[]; - scheduler: Scheduler; - logSubscribedFrame(): number; - logUnsubscribedFrame(index: number): void; -} -//# sourceMappingURL=SubscriptionLoggable.d.ts.map \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts.map b/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts.map deleted file mode 100644 index 113e268..0000000 --- a/run/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"SubscriptionLoggable.d.ts","sourceRoot":"","sources":["../../../../src/internal/testing/SubscriptionLoggable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,qBAAa,oBAAoB;IACxB,aAAa,EAAE,eAAe,EAAE,CAAM;IAE7C,SAAS,EAAE,SAAS,CAAC;IAErB,kBAAkB,IAAI,MAAM;IAK5B,oBAAoB,CAAC,KAAK,EAAE,MAAM;CAQnC"} \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts b/run/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts deleted file mode 100644 index de58893..0000000 --- a/run/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { ObservableNotification } from '../types'; -export interface TestMessage { - frame: number; - notification: ObservableNotification; - isGhost?: boolean; -} -//# sourceMappingURL=TestMessage.d.ts.map \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts.map b/run/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts.map deleted file mode 100644 index 250c8e0..0000000 --- a/run/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"TestMessage.d.ts","sourceRoot":"","sources":["../../../../src/internal/testing/TestMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAElD,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,sBAAsB,CAAC,GAAG,CAAC,CAAC;IAC1C,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB"} \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts b/run/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts deleted file mode 100644 index 06cad52..0000000 --- a/run/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { Observable } from '../Observable'; -import { ColdObservable } from './ColdObservable'; -import { HotObservable } from './HotObservable'; -import { TestMessage } from './TestMessage'; -import { SubscriptionLog } from './SubscriptionLog'; -import { VirtualTimeScheduler } from '../scheduler/VirtualTimeScheduler'; -export interface RunHelpers { - cold: typeof TestScheduler.prototype.createColdObservable; - hot: typeof TestScheduler.prototype.createHotObservable; - flush: typeof TestScheduler.prototype.flush; - time: typeof TestScheduler.prototype.createTime; - expectObservable: typeof TestScheduler.prototype.expectObservable; - expectSubscriptions: typeof TestScheduler.prototype.expectSubscriptions; - animate: (marbles: string) => void; -} -export declare type observableToBeFn = (marbles: string, values?: any, errorValue?: any) => void; -export declare type subscriptionLogsToBeFn = (marbles: string | string[]) => void; -export declare class TestScheduler extends VirtualTimeScheduler { - assertDeepEqual: (actual: any, expected: any) => boolean | void; - /** - * The number of virtual time units each character in a marble diagram represents. If - * the test scheduler is being used in "run mode", via the `run` method, this is temporarily - * set to `1` for the duration of the `run` block, then set back to whatever value it was. - */ - static frameTimeFactor: number; - /** - * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. - */ - readonly hotObservables: HotObservable[]; - /** - * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. - */ - readonly coldObservables: ColdObservable[]; - /** - * Test meta data to be processed during `flush()` - */ - private flushTests; - /** - * Indicates whether the TestScheduler instance is operating in "run mode", - * meaning it's processing a call to `run()` - */ - private runMode; - /** - * - * @param assertDeepEqual A function to set up your assertion for your test harness - */ - constructor(assertDeepEqual: (actual: any, expected: any) => boolean | void); - createTime(marbles: string): number; - /** - * @param marbles A diagram in the marble DSL. Letters map to keys in `values` if provided. - * @param values Values to use for the letters in `marbles`. If omitted, the letters themselves are used. - * @param error The error to use for the `#` marble (if present). - */ - createColdObservable(marbles: string, values?: { - [marble: string]: T; - }, error?: any): ColdObservable; - /** - * @param marbles A diagram in the marble DSL. Letters map to keys in `values` if provided. - * @param values Values to use for the letters in `marbles`. If omitted, the letters themselves are used. - * @param error The error to use for the `#` marble (if present). - */ - createHotObservable(marbles: string, values?: { - [marble: string]: T; - }, error?: any): HotObservable; - private materializeInnerObservable; - expectObservable(observable: Observable, subscriptionMarbles?: string | null): { - toBe(marbles: string, values?: any, errorValue?: any): void; - toEqual: (other: Observable) => void; - }; - expectSubscriptions(actualSubscriptionLogs: SubscriptionLog[]): { - toBe: subscriptionLogsToBeFn; - }; - flush(): void; - static parseMarblesAsSubscriptions(marbles: string | null, runMode?: boolean): SubscriptionLog; - static parseMarbles(marbles: string, values?: any, errorValue?: any, materializeInnerObservables?: boolean, runMode?: boolean): TestMessage[]; - private createAnimator; - private createDelegates; - /** - * The `run` method performs the test in 'run mode' - in which schedulers - * used within the test automatically delegate to the `TestScheduler`. That - * is, in 'run mode' there is no need to explicitly pass a `TestScheduler` - * instance to observable creators or operators. - * - * @see {@link /guide/testing/marble-testing} - */ - run(callback: (helpers: RunHelpers) => T): T; -} -//# sourceMappingURL=TestScheduler.d.ts.map \ No newline at end of file diff --git a/run/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts.map b/run/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts.map deleted file mode 100644 index 4499f14..0000000 --- a/run/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"TestScheduler.d.ts","sourceRoot":"","sources":["../../../../src/internal/testing/TestScheduler.ts"],"names":[],"mappings":"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"} \ No newline at end of file