I would like to explicitly define the return types of each Data Element. Preferably, this could be done using a TypeScript interface, JSON schema or similar.Potential types: number, string, array, Promise (for async actions), boolean, any (default) or custom object (requiring input schema). A void/u...