interface SetPropertyEvent {
    domain: string;
    keyPath: {
        type: KeyPathType;
        value: string;
    }[];
    newValue: any;
    oldValue: any;
    stackId?: number;
    time: number;
    type: ECollectType;
}

Properties

domain: string
keyPath: {
    type: KeyPathType;
    value: string;
}[]

Type declaration

  • type: KeyPathType
  • value: string
newValue: any
oldValue: any
stackId?: number
time: number
type: ECollectType

Generated using TypeDoc