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

    Interface DeclaredContributions

    The manifest facts a declaration in src is the authority for.

    Structural on purpose: a defineSettings result, a defineCommandContract result and a plain list of view ids all satisfy these without importing anything from here.

    interface DeclaredContributions {
        commands?: readonly { descriptor: CommandDescriptor }[];
        settings?: readonly {
            contributed?: boolean;
            section: string;
            values: SettingSpecs;
        }[];
        views?: readonly string[];
    }
    Index
    commands?: readonly { descriptor: CommandDescriptor }[]

    Command contracts, from defineCommandContract.

    settings?: readonly {
        contributed?: boolean;
        section: string;
        values: SettingSpecs;
    }[]

    Settings groups, from defineSettings. A group declared with contributed: false — a section the extension reads but does not own — is not asked of the manifest.

    views?: readonly string[]

    View ids the application registers, independent of manifest container.