gravitlauncher-remotecontrol-js
Version:
GravitLauncher RemoteControl module nodejs implementation
20 lines (19 loc) • 1.28 kB
TypeScript
import { GravitLauncherRemoteControlCore as This } from 'index';
export declare const basic: {
readonly gc: <T extends boolean>(this: This, log?: T) => Promise<import("index").ExtractedData<T>>;
readonly debug: <T_1 extends boolean>(this: This, params: {
enable: boolean;
}, log?: T_1) => Promise<import("index").ExtractedData<T_1>>;
readonly restart: (this: This) => Promise<import("index").ExtractedData<false>>;
readonly loadmodule: <T_2 extends boolean>(this: This, params: {
jar: string;
}, log?: T_2) => Promise<import("index").ExtractedData<T_2>>;
readonly clear: (this: This) => Promise<import("index").ExtractedData<false>>;
readonly version: <T_3 extends boolean>(this: This, log?: T_3) => Promise<import("index").ExtractedData<T_3>>;
readonly modules: <T_4 extends boolean>(this: This, log?: T_4) => Promise<import("index").ExtractedData<T_4>>;
readonly help: <T_5 extends boolean>(this: This, params: {
command?: string;
}, log?: T_5) => Promise<import("index").ExtractedData<T_5>>;
readonly stop: (this: This) => Promise<import("index").ExtractedData<false>>;
readonly build: <T_6 extends boolean>(this: This, log?: T_6) => Promise<import("index").ExtractedData<T_6>>;
};