rovalra
    Preparing search index...
    interface Setting {
        beta?: string;
        buttonText?: string;
        childSettings?: Setting;
        contributors?: number[];
        default?: unknown;
        deprecated?: string;
        description: string | string[];
        event?: string;
        experimental?: string;
        label: string;
        placeholder?: string;
        type: SettingType;
    }
    Index

    Properties

    beta?: string

    Present if the setting is in beta. Value represents why the setting is in beta

    buttonText?: string

    The text of the button, where applicable

    childSettings?: Setting

    Child Settings / Sub-Settings

    contributors?: number[]

    The contributors of the setting

    default?: unknown

    The default value

    deprecated?: string

    Present if the setting is deprecated. Value represents why the setting is deprecated

    description: string | string[]

    The description of the setting

    event?: string

    The event triggered by activating the setting, where applicable

    experimental?: string

    Present if the setting is experimental. Value represents why the setting is experimental

    label: string

    The setting label.

    placeholder?: string

    The placeholder, where applicable

    The input type expected from the user (ex. 'checkbox', 'gradient')