UNPKG

minecraft-rcon-client

Version:

Remote console client RCON. Allows you to send commands to any RCON server.

17 lines (16 loc) 287 B
export type Options = { host: string; port: number; password: string; }; export type Packet = { size?: number; id?: number; type: PacketType; body: string; }; export declare enum PacketType { RESPONSE = 0, REQUEST = 2, LOGIN = 3 }