framework icon indicating copy to clipboard operation
framework copied to clipboard

Strongly-typed JavaScript object with support for validation and error handling.

Results 2 framework issues
Sort by recently updated
recently updated
newest added

It would be very usefull to have validation strategies similar like populate/serialize strategies. That would greatly help so that you do not need to duplicate models for different inputs.

enhancement

I propose the addition of optional formatting of values based on the serialization strategy that was used. Example: In model: ``` @prop(...) public firstName: string; @prop({ ... serializable: ['short', 'full'],...

enhancement