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

    Type Alias HostState

    Lifecycle states of an ApplicationHost.

    failed is reached only after rollback completed; it never represents cleanup in progress.

    type HostState = {
        Failed: "failed";
        New: "new";
        Running: "running";
        Starting: "starting";
        Stopped: "stopped";
        Stopping: "stopping";
    }
    Index
    Failed: "failed" = 'failed'
    New: "new" = 'new'
    Running: "running" = 'running'
    Starting: "starting" = 'starting'
    Stopped: "stopped" = 'stopped'
    Stopping: "stopping" = 'stopping'