UNPKG

zhonya

Version:

A simple and typed League of Legends API wrapper for Node.js

10 lines (9 loc) 343 B
import { ZhonyaParams } from "../../config"; import { SummonerDTO } from "./types"; export declare class SummonerService { private readonly httpClient; private readonly config; constructor(config: ZhonyaParams); getSummonerProfileIconUrl(iconId: number): Promise<string>; getByPuuid(puuid: string): Promise<SummonerDTO>; }