UNPKG

jka-core

Version:

Library for working with Jedi Academy servers

17 lines (16 loc) 577 B
import { EGametypes, EServerTypes } from "../../../index"; import { TRconStatusYbeproxyClientUser } from "../clientUsers/clientUsersFromRconStatusYbeproxy.parser"; export declare type TRconStatusYbeproxyResponse = { type: EServerTypes.YBEPROXY; hostname: string; ip: string; port: string; os: string; version: string; protocol: string; gamename: string; map: string; gametype: EGametypes; players: TRconStatusYbeproxyClientUser[]; }; export declare function rconStatusYbeproxyParser(strToParse: string): TRconStatusYbeproxyResponse;