serialazy icon indicating copy to clipboard operation
serialazy copied to clipboard

TypeScript class serialization / data-mapping library

Results 4 serialazy issues
Sort by recently updated
recently updated
newest added

``` class Topping { @Serialize() public type: string; } class Book { @Serialize() public name: string; @Serialize() public topping: Topping[]; } ``` I tried and see it doesn't work.

question
documentation

I wanted to do something like this to define custom enum serialization (e. g. to serialize enum value as string instead of number): ```typescript @Serialize.Type({ ... }) enum MyEnum {...

Hello, is there any example for using @Serialize.Custom with this optinal properties in the TypeSerializer interface? /** * _Optional._ Original type constructor function. * Default: Value of `design:type` for given...

question