@ngxs/store 20.1.0-dev.master-2473470 → 20.1.0-dev.master-aa28942
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/internals/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { InjectionToken, Signal } from '@angular/core';
|
|
3
|
-
import { Observable, BehaviorSubject, Subject
|
|
3
|
+
import { Observable, BehaviorSubject, Subject } from 'rxjs';
|
|
4
4
|
|
|
5
5
|
declare class StateToken<T = void> {
|
|
6
6
|
private readonly _name;
|
|
@@ -188,8 +188,6 @@ declare class ɵOrderedBehaviorSubject<T> extends BehaviorSubject<T> {
|
|
|
188
188
|
next(value: T): void;
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
-
declare function ɵwrapObserverCalls<TValue>(invokeFn: (fn: () => void) => void): MonoTypeOperatorFunction<TValue>;
|
|
192
|
-
|
|
193
191
|
/**
|
|
194
192
|
* BehaviorSubject of the entire state.
|
|
195
193
|
* @ignore
|
|
@@ -197,6 +195,8 @@ declare function ɵwrapObserverCalls<TValue>(invokeFn: (fn: () => void) => void)
|
|
|
197
195
|
declare class ɵStateStream extends ɵOrderedBehaviorSubject<ɵPlainObject> {
|
|
198
196
|
readonly state: Signal<ɵPlainObject>;
|
|
199
197
|
constructor();
|
|
198
|
+
next(value: ɵPlainObject): void;
|
|
199
|
+
complete(): void;
|
|
200
200
|
static ɵfac: i0.ɵɵFactoryDeclaration<ɵStateStream, never>;
|
|
201
201
|
static ɵprov: i0.ɵɵInjectableDeclaration<ɵStateStream>;
|
|
202
202
|
}
|
|
@@ -214,5 +214,5 @@ declare class ɵNgxsActionRegistry {
|
|
|
214
214
|
static ɵprov: i0.ɵɵInjectableDeclaration<ɵNgxsActionRegistry>;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
|
-
export { StateToken, ɵINITIAL_STATE_TOKEN, ɵInitialState, ɵMETA_KEY, ɵMETA_OPTIONS_KEY, ɵNGXS_STATE_CONTEXT_FACTORY, ɵNGXS_STATE_FACTORY, ɵNgxsActionRegistry, ɵNgxsAppBootstrappedState, ɵOrderedBehaviorSubject, ɵOrderedSubject, ɵSELECTOR_META_KEY, ɵStateStream, ɵdefineProperty, ɵensureSelectorMetadata, ɵensureStoreMetadata, ɵgetSelectorMetadata, ɵgetStoreMetadata, ɵhasOwnProperty, ɵmemoize
|
|
217
|
+
export { StateToken, ɵINITIAL_STATE_TOKEN, ɵInitialState, ɵMETA_KEY, ɵMETA_OPTIONS_KEY, ɵNGXS_STATE_CONTEXT_FACTORY, ɵNGXS_STATE_FACTORY, ɵNgxsActionRegistry, ɵNgxsAppBootstrappedState, ɵOrderedBehaviorSubject, ɵOrderedSubject, ɵSELECTOR_META_KEY, ɵStateStream, ɵdefineProperty, ɵensureSelectorMetadata, ɵensureStoreMetadata, ɵgetSelectorMetadata, ɵgetStoreMetadata, ɵhasOwnProperty, ɵmemoize };
|
|
218
218
|
export type { ɵActionHandlerMetaData, ɵActionOptions, ɵExtractTokenType, ɵMetaDataModel, ɵPlainObject, ɵPlainObjectOf, ɵRuntimeSelectorContext, ɵSelectFromRootState, ɵSelectorFactory, ɵSelectorMetaDataModel, ɵSharedSelectorOptions, ɵStateClass, ɵStateClassInternal, ɵStateToken, ɵStoreOptions, ɵTokenName };
|