@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
11 lines (10 loc) • 357 B
TypeScript
import IComponentDataItem from "./IComponentDataItem";
export interface IItemTypeResourcePackDescription {
identifier: string;
category?: string;
}
export default interface IItemTypeResourcePack extends IComponentDataItem {
description: IItemTypeResourcePackDescription;
"minecraft:icon"?: string;
"minecraft:render_offsets"?: string;
}