Interface InitializeResult<T>

The result returned from an initialize request.

interface InitializeResult<T = any> {
    capabilities: ServerCapabilities<T>;
    serverInfo?: ServerInfo;
    [custom: string]: any;
}

Type Parameters

  • T = any

Indexable

  • [custom: string]: any

    Custom initialization results.

Properties

capabilities: ServerCapabilities<T>

The capabilities the language server provides.

serverInfo?: ServerInfo

Information about the server.

3.15.0