shelving 1.69.0 → 1.69.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/observe/Subject.d.ts +1 -1
- package/package.json +1 -1
package/observe/Subject.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export declare class Subject<T> implements Observable<T>, ConnectableObserver<T>
|
|
|
24
24
|
error(reason: Error | unknown): void;
|
|
25
25
|
complete(): void;
|
|
26
26
|
/** Close this subject (called by `error()` and `complete()`). */
|
|
27
|
-
|
|
27
|
+
protected _close(): void;
|
|
28
28
|
/** Connect this subject to a source. */
|
|
29
29
|
connect(source: Subscribable<T>): Unsubscribe;
|
|
30
30
|
/** Disconnect this subject from all sources. */
|