@@ -141,15 +141,15 @@ export interface IClientResult {
141141export type ServerNotifications <
142142 T extends keyof IServerNotifyParams = keyof IServerNotifyParams
143143> = {
144- readonly // ISignal does not have emit, which is intended - client cannot emit server notifications.
145- [ key in T ] : ISignal < LSPConnection , IServerNotifyParams [ key ] > ;
144+ // ISignal does not have emit, which is intended - client cannot emit server notifications.
145+ readonly [ key in T ] : ISignal < LSPConnection , IServerNotifyParams [ key ] > ;
146146} ;
147147
148148export type ClientNotifications <
149149 T extends keyof IClientNotifyParams = keyof IClientNotifyParams
150150> = {
151- readonly // Signal has emit.
152- [ key in T ] : Signal < LSPConnection , IClientNotifyParams [ key ] > ;
151+ // Signal has emit.
152+ readonly [ key in T ] : Signal < LSPConnection , IClientNotifyParams [ key ] > ;
153153} ;
154154
155155export interface IClientRequestHandler <
@@ -173,15 +173,15 @@ export interface IServerRequestHandler<
173173export type ClientRequests <
174174 T extends keyof IClientRequestParams = keyof IClientRequestParams
175175> = {
176- readonly // has async request(params) returning a promise with result.
177- [ key in T ] : IClientRequestHandler < key > ;
176+ // has async request(params) returning a promise with result.
177+ readonly [ key in T ] : IClientRequestHandler < key > ;
178178} ;
179179
180180export type ServerRequests <
181181 T extends keyof IServerRequestParams = keyof IServerRequestParams
182182> = {
183- readonly // has async request(params) returning a promise with result.
184- [ key in T ] : IServerRequestHandler < key > ;
183+ // has async request(params) returning a promise with result.
184+ readonly [ key in T ] : IServerRequestHandler < key > ;
185185} ;
186186
187187class ClientRequestHandler <
0 commit comments