UNPKG

@rlqd/minecraft-server-util

Version:

A Node.js library for Minecraft servers that can retrieve status, perform queries, and RCON into servers.

16 lines (15 loc) 335 B
import { SRVRecord } from './SRVRecord'; export interface JavaStatusFE01Response { protocolVersion: number; version: string; players: { online: number; max: number; }; motd: { raw: string; clean: string; html: string; }; srvRecord: SRVRecord | null; }