UNPKG

minecraftcommandapi

Version:

An API, which provides functions to generate Minecraft Commands

14 lines (13 loc) 265 B
/** * @name ICommand * @description * Interface for Minecraft Commands */ export interface ICommand { /** * @name Command * @description * The generated command, which can be imported into the game */ Command: String; }