import { Client } from '../src/Frontend' const testClient = new Client(20000, 'localhost') testClient.connect().then(_ => { testClient.info().then(console.log) testClient["HelloWorldRPCGroup"].echo("x").then(console.log) })