Interface SettingDetailsSettingBool

interface SettingDetailsSettingBool {
    control?: SettingDetailsControl;
    default: boolean;
    enabled: boolean;
    help?: string;
    id: string;
    label: string;
    level: SettingLevel;
    parent?: string;
    type: SettingType;
    value: boolean;
}

Hierarchy (View Summary)

Properties

default: boolean
enabled: boolean
help?: string
id: string
label: string
parent?: string
value: boolean