選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TestFrontend.ts 233B

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