You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestFrontend.ts 223B

1234567
  1. import { RPCSocket } from '../src/Frontend'
  2. const socket = new RPCSocket(20000, 'localhost')
  3. socket.connect().then(_ => {
  4. socket.info().then(console.log)
  5. socket["HelloWorldRPCGroup"].echo("x").then(console.log)
  6. })