UNPKG

@rlqd/minecraft-server-util

Version:

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

10 lines (9 loc) 242 B
export interface ScanLANOptions { scanTime?: number; } export interface ScannedServer { host: string; port: number; motd: string; } export declare function scanLAN(options?: ScanLANOptions): Promise<ScannedServer[]>;