Do not specify _send message type

This commit is contained in:
link2xt
2023-01-31 09:35:41 +00:00
parent 55cb11da07
commit e171a69240

View File

@@ -120,7 +120,7 @@ export class StdioTransport extends BaseTransport {
});
}
_send(message: RPC.Message): void {
_send(message: any): void {
const serialized = JSON.stringify(message);
this.input.write(serialized + "\n");
}