We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It it possible to use this library to deserialize JSON to an instance of a class that expects a generic type argument?
For example:
class MyMessage<T> { Id!: string; Payload!: T; } class MyPayload { Data!: string; } const instance = new MyMessage<MyPayload>(); instance.Id = "TEST1"; instance.Payload = new MyPayload(); instance.Payload.Data = "PAYLOAD DATA"; const serialized = serialize(instance); const deserialized = deserialize(MyMessage<MyPayload>, serialized);
This gives the following compile error:
Operator '<' cannot be applied to types 'typeof MyMessage' and 'typeof MyPayload'.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It it possible to use this library to deserialize JSON to an instance of a class that expects a generic type argument?
For example:
This gives the following compile error:
The text was updated successfully, but these errors were encountered: