@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
16 lines (15 loc) • 717 B
TypeScript
/**
* Plain-English descriptions for Minecraft Bedrock Edition components.
* Used to provide tooltips in component editors so creators understand
* what each component does without reading documentation.
*
* Coverage: ~200 components across entity behaviors, entity properties,
* block components, and item components.
*/
export declare const componentDescriptions: Record<string, string>;
/**
* Gets a plain-English description for a Minecraft component ID.
* @param componentId The full or short component ID (e.g., "minecraft:physics" or "physics")
* @returns The description string, or undefined if not found
*/
export declare function getComponentDescription(componentId: string): string | undefined;