UNPKG

galeforce-tmp-sea

Version:

A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.

20 lines 343 B
interface Rune { id: number; key: string; icon: string; name: string; shortDesc: string; longDesc: string; } interface Slot { runes: Rune[]; } export interface DataDragonRuneDTO { id: number; key: string; icon: string; name: string; slots: Slot[]; } export {}; //# sourceMappingURL=rune.d.ts.map