Interface ControlAttrs

interface ControlAttrs {
    attributes?: {
        disabled: boolean;
        state?: ActionState;
    };
    category: string;
    id: string;
    states?: ControlStates;
    type: string;
}

Properties

attributes?: {
    disabled: boolean;
    state?: ActionState;
}
category: string
id: string
states?: ControlStates
type: string