import { EventDispatcher } from './Event';
import { PropertyChangedArg } from './PropertyChangedArg';
/**
 * Интерфейс объекта, сообщающего об изменении свойств
 */
export interface INotifyPropertyChanged {
    onPropertyChanged: EventDispatcher<PropertyChangedArg>;
}
