galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
22 lines • 385 B
TypeScript
interface Image {
full: string;
sprite: string;
group: string;
x: number;
y: number;
w: number;
h: number;
}
interface Data {
[key: string]: {
id: number;
image: Image;
};
}
export interface DataDragonProfileIconListDTO {
type: string;
version: string;
data: Data;
}
export {};
//# sourceMappingURL=profile-icons.d.ts.map