@jlenon7/zedjs
Version:
Riot API Library for NodeJS
23 lines (22 loc) • 411 B
TypeScript
import { LolStatusServiceStatusIncident } from './lol-status-service-indicents.dto';
/**
* Lol Service dto
*/
export declare class LolStatusServiceDTO {
/**
* Service name
*/
name: string;
/**
* Service status
*/
status: string;
/**
* Service slug
*/
slug: string;
/**
* Service incidents
*/
indicents: LolStatusServiceStatusIncident;
}