@marianfoo/adt-ls - v0.4.1
    Preparing search index...

    Interface LspRequester

    The LSP request channel alone. Consumers that only send requests (repository queries, the authoring lifecycle) depend on this minimal surface, so a session-retry wrapper — or a test fake — can stand in for the full driver.

    interface LspRequester {
        sendRequest<T = unknown>(method: string, params?: unknown): Promise<T>;
    }

    Hierarchy (View Summary)

    Index

    Methods

    Methods

    • Type Parameters

      • T = unknown

      Parameters

      • method: string
      • Optionalparams: unknown

      Returns Promise<T>