tips-twisted
Version:
Fetching riot games api data
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;
}