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

    Interface ModuleDescription

    One module, and what it says it needs from the host.

    interface ModuleDescription {
        compatibility: string;
        id: string;
        requires: { localFileSystem: boolean; trust: boolean; workspace: boolean };
        source: string | undefined;
    }
    Index
    compatibility: string

    Declared host compatibility, or 'unspecified'.

    id: string
    requires: { localFileSystem: boolean; trust: boolean; workspace: boolean }

    Hard requirements checked at activation.

    source: string | undefined

    The optional diagnostic label the module was declared with.