Interface ChangeEvent

interface ChangeEvent {
    config?: UiObjectConfig;
    configPath?: UiObjectConfig[];
    last?: boolean;
    lastValue?: any;
    target?: UiObjectConfig;
    type: "change";
    value?: any;
}

Properties

configPath?: UiObjectConfig[]
last?: boolean
lastValue?: any
type: "change"
value?: any