UNPKG

typedux

Version:

Slightly adjusted Redux (awesome by default) for TS

15 lines (14 loc) 336 B
/** * A reloadable proxy between a target object * and the end consumer. * * Implemented specifically for hot loading */ export declare class VariableProxy<T> { private ignoredProps; target: any; proxy: T; constructor(target: T, ignoredProps?: any[]); private addProxies; changeTarget(target: any): void; }