zhonya
Version:
A simple and typed League of Legends API wrapper for Node.js
11 lines (10 loc) • 316 B
TypeScript
import { ZhonyaParams } from "../../config";
import { ChampionsDto } from "./types";
export declare class ChampionService {
private readonly httpClient;
private readonly config;
constructor(config: ZhonyaParams);
getAllChampions(params?: {
language?: string;
}): Promise<ChampionsDto>;
}