Interface GenericBoolEntry

interface GenericBoolEntry {
    enabled?: () => boolean;
    id: string;
    label: string;
    state: StateRef<boolean>;
    type: "bool";
    visible?: () => boolean;
}

Hierarchy

  • BaseGenericEntry
    • GenericBoolEntry

Properties

enabled?: () => boolean
id: string
label: string
state: StateRef<boolean>
type: "bool"
visible?: () => boolean