galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
39 lines • 743 B
TypeScript
interface VocabTerm {
description: string;
name: string;
nameRef: string;
}
interface Keyword {
description: string;
name: string;
nameRef: string;
}
interface Region {
abbreviation: string;
iconAbsolutePath: string;
name: string;
nameRef: string;
}
interface SpellSpeed {
name: string;
nameRef: string;
}
interface Rarity {
name: string;
nameRef: string;
}
interface Set {
iconAbsolutePath: string;
name: string;
nameRef: string;
}
export interface LorDataDragonGlobalsDTO {
vocabTerms: VocabTerm[];
keywords: Keyword[];
regions: Region[];
spellSpeeds: SpellSpeed[];
rarities: Rarity[];
sets: Set[];
}
export {};
//# sourceMappingURL=globals.d.ts.map