galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
18 lines • 801 B
TypeScript
/// <reference types="node" />
import Action from '../../action';
import SubmoduleMap from '../../../interfaces/submodule-map';
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">;
};
} & typeof Action;
export default class GetLorDataDragonCoreBundle extends BaseAction<Buffer> {
constructor(submodules: SubmoduleMap);
protected inferEndpoint(): void;
}
export {};
//# sourceMappingURL=core-bundle.d.ts.map