MCPcopy
hub / github.com/microsoft/vscode-languageserver-node / sendRequest

Method sendRequest

jsonrpc/src/main.ts:269–269  ·  view source on GitHub ↗
(type: RequestType0<R, E, RO>, token?: CancellationToken)

Source from the content-addressed store, hash-verified

267
268export interface MessageConnection {
269 sendRequest<R, E, RO>(type: RequestType0<R, E, RO>, token?: CancellationToken): Thenable<R>;
270 sendRequest<P, R, E, RO>(type: RequestType<P, R, E, RO>, params: P, token?: CancellationToken): Thenable<R>;
271 sendRequest<P1, R, E, RO>(type: RequestType1<P1, R, E, RO>, p1: P1, token?: CancellationToken): Thenable<R>;
272 sendRequest<P1, P2, R, E, RO>(type: RequestType2<P1, P2, R, E, RO>, p1: P1, p2: P2, token?: CancellationToken): Thenable<R>;

Callers 1

connection.test.tsFile · 0.65

Calls

no outgoing calls

Tested by

no test coverage detected