UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

17 lines (16 loc) 812 B
/** * OpenSettingsCommand - Pointer to the Settings panel * * Informational only. Tells the user where to find the Settings * panel (CreatorToolsSettingsPanel) so they can adjust theme, * mode, format-on-save, and other preferences. The slash bar * does not navigate the UI directly. */ import type { IToolCommandMetadata, IToolCommandResult } from "../IToolCommand"; import { ToolCommandBase } from "../IToolCommand"; import type { IToolCommandContext } from "../IToolCommandContext"; export declare class OpenSettingsCommand extends ToolCommandBase { readonly metadata: IToolCommandMetadata; execute(context: IToolCommandContext, _args: string[], _flags: Record<string, string | boolean | string[]>): Promise<IToolCommandResult>; } export declare const openSettingsCommand: OpenSettingsCommand;