Andrey Tselishchev

Results 4 comments of Andrey Tselishchev

@nguyenbathanh @DudaevAR Automatic serialization of container types (like Map and Array) is not supported because reflection methods (`reflect-metadata` polyfill) do not allow to extract types of contained items. It is...

@Schwankenson I think it is fine. You can take one step further and reduce it to: ``` ts type Constructor = new (...args: any[]) => T; function SerializeAnArrayOf(ctor: Constructor) {...

Hey Georg, This `discriminate` functionality was never fully implemented. Later I decided that it adds unnecessary complexity to the library and the same effect can be achieved by providing custom...

Btw, can you provide a complete example of what you're trying to do?