@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
21 lines (20 loc) • 802 B
TypeScript
import { CommandStatus } from "./ICommand";
import IContext from "./IContext";
export default class CreatorToolsCommands {
static debugProjectInformation(context: IContext, name: string, args: string[]): Promise<{
status: CommandStatus;
}>;
static debugMinecraft(context: IContext, name: string, args: string[]): Promise<{
status: CommandStatus;
}>;
static startMinecraft(context: IContext, name: string, args: string[]): Promise<{
status: CommandStatus;
}>;
static stopMinecraft(context: IContext, name: string, args: string[]): Promise<{
status: CommandStatus;
}>;
static updateMinecraft(context: IContext, name: string, args: string[]): Promise<{
status: CommandStatus;
}>;
static registerCommonCommands(): void;
}