@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
20 lines (19 loc) • 428 B
TypeScript
export default interface IMojangBlocks {
block_properties: IBlockTypePropertyData[];
data_items: IMojangBlock[];
}
export interface IBlockTypePropertyData {
name: string;
type?: string;
values?: string[];
}
export interface IMojangBlock {
name: string;
properties: {
name: string;
type?: string;
values?: string[];
}[];
raw_id: number;
serialization_id: string;
}