Вы не можете выбрать более 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. })