@harmowatch/ngx-redux-core
Version:
[](https://gitter.im/harmowatch/ngx-redux-core?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
16 lines (15 loc) • 506 B
TypeScript
import { Store } from 'redux';
import { ReduxStateProvider } from './redux-state.provider';
export interface IRegisterStatePayload {
initialValue: {};
name: string;
}
export declare class ReduxRegistry {
static readonly ACTION_REGISTER_STATE: string;
private static _store;
constructor(store?: Store<{}>);
static reset(): void;
static registerStore(store: Store<{}>): void;
static registerState(state: ReduxStateProvider): void;
static getStore(): Promise<Store<{}>>;
}