propertyChangedEvent.ts 148 B

123456
  1. export class PropertyChangedEvent {
  2. public object: any;
  3. public property: string;
  4. public value: any;
  5. public initialValue: any;
  6. }