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

    Interface HostEnvironment

    The host facts runtime preflight checks a module's requirements against.

    Read once at activation. These cannot be known at definition time, which is why preflight is two-stage: identity and the service graph are checked when the plan compiles, and this is checked when the host starts.

    interface HostEnvironment {
        hasVirtualWorkspace: boolean;
        isTrusted: boolean;
        remoteName: string | undefined;
        uiKind: UiKind;
        workspaceFolderCount: number;
    }
    Index
    hasVirtualWorkspace: boolean

    True when any workspace folder uses a scheme other than file.

    isTrusted: boolean

    Whether the workspace is trusted.

    remoteName: string | undefined

    Remote authority name, or undefined when local.

    uiKind: UiKind

    Desktop or browser/worker extension host.

    workspaceFolderCount: number

    Number of open workspace folders. Zero means no folder is open.