You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of now, the JsonCustomConvert interface has the methods serialize(data: T): any and deserialize(data: any): T.
In some cases, the (de-)serialization might be dependent on the parent's object values. We could add an optional parameter parentData?: any in both methods that contains the parent data (object) if it exists, undefined otherwise.
The text was updated successfully, but these errors were encountered:
As of now, the
JsonCustomConvert
interface has the methodsserialize(data: T): any
anddeserialize(data: any): T
.In some cases, the (de-)serialization might be dependent on the parent's object values. We could add an optional parameter
parentData?: any
in both methods that contains the parent data (object) if it exists,undefined
otherwise.The text was updated successfully, but these errors were encountered: