@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface SettingDescription

    One setting, keyed as the manifest keys it.

    interface SettingDescription {
        default: unknown;
        enum: readonly unknown[] | undefined;
        key: string;
        scope: string;
        type: readonly string[];
    }
    Index
    default: unknown

    The declared default. Whatever the declaration put there.

    enum: readonly unknown[] | undefined

    Allowed values, in declaration order, when the setting is an enum.

    key: string

    Fully-qualified key: the section and the name, joined.

    scope: string

    Contribution scope, matching contributes.configuration.

    type: readonly string[]

    JSON Schema type names, always as a list.