Type Alias TypeAttributesChange<ControlTypeAttributes, Property>

TypeAttributesChange<ControlTypeAttributes, Property>: Property extends any
    ? {
        property: Property;
        type: "typeAttributes";
        value: {
            new: ControlTypeAttributes[Property];
            old: ControlTypeAttributes[Property];
        };
    }
    : never

Type Parameters