UNPKG

rcon-node

Version:

A TypeScript RCON client library for modern game servers.

12 lines 401 B
import { Socket } from "node:dgram"; import { BaseClient } from "./base.client"; export declare class BattlEyeClient extends BaseClient { protected socket: Socket | null; private seq; private keepAlive; connect(): Promise<void>; protected handleMessage(msg: Buffer): void; send(command: string): Promise<string>; end(): void; } //# sourceMappingURL=battleye.client.d.ts.map