Skip to content

lspeasy / core/src / RequestMethodMap

Variable: RequestMethodMap

ts
const RequestMethodMap: Map<LSPRequestMethod, {
  ClientCapability?: ClientCapabilityForRequest<LSPRequestMethod>;
  Direction: DirectionForRequest<LSPRequestMethod>;
  ServerCapability?: ServerCapabilityForRequest<LSPRequestMethod>;
}>;

Defined in: packages/core/src/protocol/infer.ts:191

Runtime map from every LSP request method string to its metadata (direction, server capability, client capability).

Released under the MIT License.