UNPKG

@mic-rexjs/usecases

Version:
7 lines (6 loc) 170 B
export interface EntityWatcher<T> { (newEntity: T, oldEntity: T): void; } export interface EntityStoreOptions<T> { onChange?(newEntity: T, oldEntity: T): void; }