galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
22 lines • 1.17 kB
TypeScript
import Action from '../../action';
import { RiotRegion } from '../../../../riot-api';
import SubmoduleMap from '../../../interfaces/submodule-map';
import { TournamentCodeUpdateParameters } from '../../../interfaces/parameters';
declare const BaseAction: {
new (...args: any[]): {
body<K extends import("../../mixins/body").BodyChainable<TournamentCodeUpdateParameters> & import("../../mixins/executable").Executable>(this: K, body: TournamentCodeUpdateParameters): Omit<K, "body">;
};
} & {
new (...args: any[]): {
tournamentCode<K_1 extends import("../../mixins/tournament-code").TournamentCodeChainable & import("../../mixins/executable").Executable>(this: K_1, tournamentCode: string): Omit<K_1, "tournamentCode">;
};
} & {
new (...args: any[]): {
region<K_2 extends import("../../mixins/region").RegionChainable<RiotRegion> & import("../../mixins/executable").Executable>(this: K_2, region: RiotRegion): Omit<K_2, "region">;
};
} & typeof Action;
export default class PutTournamentCodes extends BaseAction<void> {
constructor(submodules: SubmoduleMap);
}
export {};
//# sourceMappingURL=update-tournament.d.ts.map