import { NotificationHandler, RequestHandler } from 'vscode-languageserver-protocol'; export interface HandlesRequest { requestHandler: RequestHandler; } export interface HandlesNotification

{ notificationHandler: NotificationHandler

; }