Interface ConfigStateChange

interface ConfigStateChange {
    property: "required" | "hidden" | "readOnly";
    type: "configState";
    value: {
        new: boolean;
        old: boolean;
    };
}

Properties

Properties

property: "required" | "hidden" | "readOnly"
type
value: {
    new: boolean;
    old: boolean;
}