Pike LSP TypeScript API - v0.1.0-alpha.20
    Preparing search index...

    Interface BridgeHealthCheck

    Result of a bridge health check.

    interface BridgeHealthCheck {
        analyzerExists: boolean;
        analyzerPath: string;
        canStart: boolean;
        error?: string;
        pikeAvailable: boolean;
        pikeVersion: string | null;
    }
    Index

    Properties

    analyzerExists: boolean

    Whether analyzer.pike script exists.

    analyzerPath: string

    Path to the analyzer script.

    canStart: boolean

    Whether the bridge can start successfully.

    error?: string

    Error message if health check failed.

    pikeAvailable: boolean

    Whether Pike executable is available.

    pikeVersion: string | null

    Detected Pike version (e.g., "8.0").