UNPKG

galeforce-tmp-sea

Version:

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

23 lines 1.14 kB
import Action from '../../action'; import { LeagueRegion, Tier } from '../../../../riot-api'; import SubmoduleMap from '../../../interfaces/submodule-map'; import { ApexPlayerInfoDTO } from '../../../interfaces/dto'; declare const BaseAction: { new (...args: any[]): { tier<K extends import("../../mixins/tier").TierChainable & import("../../mixins/executable").Executable>(this: K, tier: Tier): Omit<K, "tier">; }; } & { new (...args: any[]): { challengeId<K_1 extends import("../../mixins/challenge-id").ChallengeIdChainable & import("../../mixins/executable").Executable>(this: K_1, challengeId: number): Omit<K_1, "challengeId">; }; } & { new (...args: any[]): { region<K_2 extends import("../../mixins/region").RegionChainable<LeagueRegion> & import("../../mixins/executable").Executable>(this: K_2, region: LeagueRegion): Omit<K_2, "region">; }; } & typeof Action; export default class GetChallengeLeaderboard extends BaseAction<ApexPlayerInfoDTO> { constructor(submodules: SubmoduleMap); exec(): Promise<ApexPlayerInfoDTO>; } export {}; //# sourceMappingURL=leaderboard.d.ts.map