Interface IMinecraftData

Server handshake JSON payload

interface IMinecraftData {
    description: IHandshakeDescriptionData;
    favicon?: string;
    modinfo?: { modList: string[]; type: string };
    ping: number;
    players: IHandshakePlayerData;
    version: { name: string; protocol: number };
    [key: string]: unknown;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: unknown

Properties

favicon?: string
modinfo?: { modList: string[]; type: string }
ping: number
version: { name: string; protocol: number }