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

    Interface PikeProcessEvents

    Events emitted by PikeProcess

    interface PikeProcessEvents {
        error: (err: Error) => void;
        exit: (code: number | null) => void;
        message: (line: string) => void;
        stderr: (data: string) => void;
    }
    Index

    Properties

    error: (err: Error) => void

    Process failed to start or encountered an error

    exit: (code: number | null) => void

    Process exited with exit code

    message: (line: string) => void

    A complete JSON-RPC response line received from stdout

    stderr: (data: string) => void

    stderr output from the Pike process