UNPKG

galeforce-tmp-sea

Version:

A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.

18 lines 856 B
import Action from '../../action'; import { LeagueRegion } from '../../../../riot-api'; import SubmoduleMap from '../../../interfaces/submodule-map'; import { PlayerInfoDTO } from '../../../interfaces/dto'; declare const BaseAction: { new (...args: any[]): { puuid<K extends import("../../mixins/puuid").PUUIDChainable & import("../../mixins/executable").Executable>(this: K, puuid: string): Omit<K, "puuid">; }; } & { new (...args: any[]): { region<K_1 extends import("../../mixins/region").RegionChainable<LeagueRegion> & import("../../mixins/executable").Executable>(this: K_1, region: LeagueRegion): Omit<K_1, "region">; }; } & typeof Action; export default class GetPlayerChallengeData extends BaseAction<PlayerInfoDTO> { constructor(submodules: SubmoduleMap); } export {}; //# sourceMappingURL=player-data.d.ts.map