You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Im trying to configure the redux devtools in app.module the way is used to configure it, but now i get an intellesense error.
Type 'StoreEnhancer<any, {}>[]' is not assignable to type 'Middleware<{}, any, Dispatch>'.
Type 'StoreEnhancer<any, {}>[]' provides no match for the signature '(api: MiddlewareAPI<Dispatch, any>): (next: Dispatch) => (action: any) => any'
Im trying to configure the redux devtools in app.module the way is used to configure it, but now i get an intellesense error.
Type 'StoreEnhancer<any, {}>[]' is not assignable to type 'Middleware<{}, any, Dispatch>'.
Type 'StoreEnhancer<any, {}>[]' provides no match for the signature '(api: MiddlewareAPI<Dispatch, any>): (next: Dispatch) => (action: any) => any'
constructor(private ngRedux: NgRedux<IAppState>, devTools: DevToolsExtension) { const enhancer = isDevMode() ? [devTools.enhancer()] : []; this.ngRedux.configureStore(reducers, initialState, enhancer); }
The text was updated successfully, but these errors were encountered: