UNPKG

@versatiledatakit/shared

Version:

Versatile Data Kit Shared library enables reusability of shared features like: NgRx Redux, Error Handlers, Utils, Generic Components, etc.

18 lines (17 loc) 450 B
import { RouterState } from '../../router'; import { LiteralComponentsState } from '../../component'; /** * ** Constant for Store Router field. */ export declare const STORE_ROUTER = "router"; /** * ** Constant for Store Components field. */ export declare const STORE_COMPONENTS = "components"; /** * ** Store State interface. */ export interface StoreState { [STORE_ROUTER]: RouterState; [STORE_COMPONENTS]: LiteralComponentsState; }