interface Setting {
    default: number;
    key: string;
    label: string;
    options: string[];
    requireReload?: boolean;
    type: SettingType;
}

Properties

default: number
key: string
label: string
options: string[]
requireReload?: boolean