UNPKG

galeforce-tmp-sea

Version:

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

18 lines 916 B
import Action from '../../action'; import { ValRecentMatchesDTO } from '../../../interfaces/dto'; import { ValorantQueue, ValorantRegion } from '../../../../riot-api'; import SubmoduleMap from '../../../interfaces/submodule-map'; declare const BaseAction: { new (...args: any[]): { queue<K extends import("../../mixins/queue").QueueChainable<ValorantQueue> & import("../../mixins/executable").Executable>(this: K, queue: ValorantQueue): Omit<K, "queue">; }; } & { new (...args: any[]): { region<K_1 extends import("../../mixins/region").RegionChainable<ValorantRegion> & import("../../mixins/executable").Executable>(this: K_1, region: ValorantRegion): Omit<K_1, "region">; }; } & typeof Action; export default class GetValorantRecentMatches extends BaseAction<ValRecentMatchesDTO> { constructor(submodules: SubmoduleMap); } export {}; //# sourceMappingURL=recent-matches.d.ts.map