UNPKG

@state-sync/redux-path-reducer

Version:
12 lines (11 loc) 333 B
import { Store } from "redux"; export declare class PatchArea<S> { private store; private rootPath; constructor(rootPath: string, store: Store<S>); select(path: string): any; replace(path: string, value: any): void; remove(path: string): void; child(path: string): PatchArea<S>; private path(path); }