galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
24 lines • 578 B
TypeScript
interface GeneralRune {
displayName: string;
id: number;
rawDescription: string;
rawDisplayName: string;
}
interface StatRune {
id: number;
rawDescription: string;
}
export interface LiveClientFullRunesDTO {
keystone: GeneralRune;
primaryRuneTree: GeneralRune;
secondaryRuneTree: GeneralRune;
generalRunes: GeneralRune[];
statRunes: StatRune[];
}
export interface LiveClientMainRunesDTO {
keystone: GeneralRune;
primaryRuneTree: GeneralRune;
secondaryRuneTree: GeneralRune;
}
export {};
//# sourceMappingURL=runes.d.ts.map