steam-condenser
Version:
TypeScript port of steam-condenser.
10 lines (9 loc) • 360 B
TypeScript
import SteamSocket from './SteamSocket';
import SteamPacket from '../Packets/SteamPacket';
declare class GoldSrcSocket extends SteamSocket {
private isHLTV;
constructor(address: string, port?: number, isHLTV?: boolean);
getReply(): Promise<SteamPacket>;
rconExec(password: string, command: string): Promise<string>;
}
export { GoldSrcSocket };