Decorator for casting property values to model instances. Automatically converts plain objects to model instances when accessed.
Factory function that returns the model constructor to cast to
A property decorator function
class User { @Cast(() => Profile) profile: Profile;} Copy
class User { @Cast(() => Profile) profile: Profile;}
Decorator for casting property values to model instances. Automatically converts plain objects to model instances when accessed.