projects/wms-framework/src/lib/basecomponentmodel/INotifyPropertyChanged.ts
        
Interface of INotifyPropertyChanged
                            Properties | 
                    
| PropertyChanged | 
                                        PropertyChanged:         
                                     | 
                                
                                            Type :         SubscriptionEvent<void>
                                         | 
                                    
import { SubscriptionEvent } from '../utils/SubscriptionEvent';
/**
 * Interface of INotifyPropertyChanged
 *
 * @export
 * @interface INotifyPropertyChanged
 * @wInterface System.ComponentModel.INotifyPropertyChanged
 */
export interface INotifyPropertyChanged {
  PropertyChanged: SubscriptionEvent<
    (o: any, args: { PropertyName: string }) => void
  >;
}