UNPKG

bedrock-development

Version:

APIs for creating and editing files related to Minecraft Bedrock development.

12 lines (11 loc) 279 B
type PropertyType = "bool" | "enum" | "float" | "int"; export interface EntityPropertyOptions { type: string[]; file: string; property: PropertyType; values?: string[]; client: boolean; event: boolean; default: number | string | boolean; } export {};