zhonya
Version:
A simple and typed League of Legends API wrapper for Node.js
18 lines (17 loc) • 372 B
TypeScript
export type GetSummonerResponse = {
id: string;
accountId: string;
puuid: string;
profileIconId: number;
revisionDate: number;
summonerLevel: number;
};
export type SummonerDTO = {
id: string;
accountId: string;
puuid: string;
profileIconId: number;
revisionDate: Date;
summonerLevel: number;
profileIconUrl: string;
};