/** * Domain types for world state changes */ /** * Types of changes that can occur in the world */ export type WorldChangeType = 'move' | 'create' | 'delete' | 'modify' | 'relate' | 'unrelate'; //# sourceMappingURL=changes.d.ts.map