PropertyCallback Type

PropertyCallback = (name: string, meta: PropertyMetaData) => void

A callback function to process properties of an Entity

@example

// Current usage:
const callback: PropertyCallback = (name: string, propMetaData: PropertyMetaData) => {
 console.log(`Property name: ${name}, Property type: ${propMetaData.primitiveType}`);
};

// Replacement:
const callback: PropertyHandler = (propName: string, property: Property) => {
 console.log(`Property name: ${propName}, Property type: ${property.propertyType}`);
};

Defined in

Last Updated: 03 April, 2025