UNPKG

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