UNPKG

ngrx-store-freeze

Version:

@ngrx/store meta reducer that prevents state from being mutated.

6 lines (5 loc) 255 B
import { ActionReducer, Action } from '@ngrx/store'; /** * Meta-reducer that prevents state from being mutated anywhere in the app. */ export declare function storeFreeze<T, V extends Action = Action>(reducer: ActionReducer<T, V>): ActionReducer<T, V>;