UNPKG

leaguejs

Version:

Wrapper for the League of Legends API

13 lines (10 loc) 239 B
import {ImageDTO} from './ImageDTO'; import {ListDTO} from './ListDTO'; export interface MapDTO { MapName: string, /** numerical */ MapId: string, image: ImageDTO } export interface MapListDTO extends ListDTO<MapDTO> { }