UNPKG

@versatiledatakit/shared

Version:

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

21 lines (20 loc) 600 B
import { RootStoreConfig } from '@ngrx/store'; import { StoreDevtoolsConfig } from '@ngrx/store-devtools'; /** * ** Configuration for NgRx Store Devtools. */ export declare const NGRX_STORE_DEVTOOLS_CONFIG: StoreDevtoolsConfig; /** * ** Configuration for NgRx Store. */ export declare const NGRX_STORE_CONFIG: RootStoreConfig<any>; /** * ** Config for Taurus impl of NgRx. */ export interface TaurusNgRxConfig { /** * ** StoreDevTools configuration replica. * <p>see {@link https://ngrx.io/guide/store-devtools/config}</p> */ storeDevToolsConfig?: StoreDevtoolsConfig; }