Skip to content

lspeasy / core/src / NotificationMethodMap

Variable: NotificationMethodMap

ts
const NotificationMethodMap: Map<LSPNotificationMethod, {
  ClientCapability?: ClientCapabilityForNotification<LSPNotificationMethod>;
  Direction: DirectionForNotification<LSPNotificationMethod>;
  ServerCapability?: ServerCapabilityForNotification<LSPNotificationMethod>;
}>;

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

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

Released under the MIT License.