UNPKG

growtopia-api

Version:

An unofficial Growtopia API to gather item informations, name matches, sprites and server status.

10 lines (9 loc) 216 B
interface ServerStatus { date: string; time: string; playerCount: number; wotdName: string; wotdURL: string; } declare function serverStatus(): Promise<ServerStatus>; export default serverStatus;