@ngxs/store 3.8.2-dev.master-8085e85 → 3.8.2-dev.master-e8a3d9f
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/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
1
2
|
import { Observable } from 'rxjs';
|
|
2
3
|
import { ɵPlainObjectOf, ɵStateClassInternal, ɵActionHandlerMetaData } from '@ngxs/store/internals';
|
|
3
4
|
import { NgxsConfig } from '../symbols';
|
|
@@ -26,8 +27,11 @@ export interface StatesAndDefaults {
|
|
|
26
27
|
* getValue({ foo: bar: [] }, 'foo.bar') //=> []
|
|
27
28
|
*
|
|
28
29
|
* @ignore
|
|
30
|
+
*
|
|
31
|
+
* Marked for removal. It's only used within `createSelectorFn`.
|
|
29
32
|
*/
|
|
30
33
|
export declare function propGetter(paths: string[], config: NgxsConfig): (x: any) => any;
|
|
34
|
+
export declare const ɵPROP_GETTER: InjectionToken<(paths: string[]) => (x: any) => any>;
|
|
31
35
|
/**
|
|
32
36
|
* Given an array of states, it will return a object graph. Example:
|
|
33
37
|
* const states = [
|
|
@@ -29,6 +29,7 @@ export declare class StateFactory implements OnDestroy {
|
|
|
29
29
|
private _stateContextFactory;
|
|
30
30
|
private _initialState;
|
|
31
31
|
private _actionsSubscription;
|
|
32
|
+
private _propGetter;
|
|
32
33
|
constructor(_injector: Injector, _config: NgxsConfig, _parentFactory: StateFactory, _actions: InternalActions, _actionResults: InternalDispatchedActionResults, _stateContextFactory: StateContextFactory, _initialState: any);
|
|
33
34
|
private _states;
|
|
34
35
|
get states(): MappedStore[];
|