@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
18 lines (17 loc) • 474 B
TypeScript
import IBlockTypePropertyValueData from "./IBlockTypePropertyValueData";
export declare enum BlockPropertyType {
int = 0,
boolean = 1,
string = 2,
float = 3,
stringEnum = 4,
intEnum = 5,
intBoolean = 6
}
export default interface IBlockTypePropertyData {
name: string;
default?: string | number | number[] | bigint | bigint[] | boolean | null;
type: BlockPropertyType;
title?: string;
values?: IBlockTypePropertyValueData[];
}