UNPKG

minecraftcommandapi

Version:

An API, which provides functions to generate Minecraft Commands

14 lines (13 loc) 259 B
/** * @name IGenerateable * @description * Interface for Generateable objects */ export interface IGenerateable { /** * @name Data * @description * The data which can be converted to a JSON String. */ Data: any; }