UNPKG

@obsidize/rx-map

Version:

ES6 Map with rxjs extensions for change detection

9 lines (8 loc) 193 B
/** * Metadata for a single property change on an entity object. */ export interface EntityPropertyChangeEvent<K, V> { entityId: K; currentValue?: V; previousValue?: V; }