@rlqd/minecraft-server-util
Version:
A Node.js library for Minecraft servers that can retrieve status, perform queries, and RCON into servers.
18 lines (17 loc) • 380 B
TypeScript
import { SRVRecord } from './SRVRecord';
export interface JavaStatusLegacyResponse {
version: {
name: string | null;
protocol: number | null;
} | null;
players: {
online: number;
max: number;
};
motd: {
raw: string;
clean: string;
html: string;
};
srvRecord: SRVRecord | null;
}