UNPKG

twisted

Version:
31 lines (30 loc) 488 B
import { LolStatusServiceDTO } from './lol-status-service.dto'; /** * Lol Status response */ export declare class LolStatusDTO { /** * Lol server */ name: string; /** * Server lol key */ region_tag: string; /** * Hostname */ hostname: string; /** * Server short name */ slug: string; /** * Locales */ locales: string[]; /** * Services status */ services: LolStatusServiceDTO; }