UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

10 lines (9 loc) 328 B
import IComponentDataItem from "./IComponentDataItem"; import IItemEvent from "./IItemEvent"; import IItemTypeDescription from "./IItemTypeDescription"; export default interface IItemTypeBehaviorPack extends IComponentDataItem { description: IItemTypeDescription; events?: { [name: string]: IItemEvent; }; }