UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

9 lines (8 loc) 301 B
import IProperty from "./IProperty"; import { IEvent } from "ste-events"; export default interface IPropertyObject { onPropertyChanged: IEvent<IPropertyObject, IProperty>; getProperty(id: string): IProperty; ensureProperty(id: string): IProperty; addProperty(id: string): IProperty; }