public async stopClient()

in src/clientHandler.ts [119:125]


  public async stopClient(): Promise<void> {
    if (this.tfClient?.client === undefined) {
      return;
    }
    await this.tfClient.client.stop();
    console.log('Client stopped');
  }