galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
21 lines • 1.03 kB
TypeScript
import Action from '../../action';
import SubmoduleMap from '../../../interfaces/submodule-map';
import { DataDragonRegionDTO } from '../../../interfaces/dto';
declare const BaseAction: {
new (...args: any[]): {
version<K extends import("../../mixins/version").VersionChainable & import("../../mixins/executable").Executable>(this: K, version: string): Omit<K, "version">;
};
} & {
new (...args: any[]): {
locale<K_1 extends import("../../mixins/locale").LocaleChainable & import("../../mixins/executable").Executable>(this: K_1, locale: string): Omit<K_1, "locale">;
};
} & {
new (...args: any[]): {
champion<K_2 extends import("../../mixins/champion").ChampionChainable & import("../../mixins/executable").Executable>(this: K_2, champion: string): Omit<K_2, "champion">;
};
} & typeof Action;
export default class GetDataDragonChampionJSON extends BaseAction<DataDragonRegionDTO> {
constructor(submodules: SubmoduleMap);
}
export {};
//# sourceMappingURL=champion.d.ts.map