RafaelSalguero/CSharp2TS

Map Tuple & Anonymous types

Opened this issue · 1 comments

Hi;
This extension is great ;
Thx dude 💯

Can you add a feature for map tuple & anonymous types ?

Example

C#
public List<(int Id, object Value)> Properties { get; set; }

Expected TS
Properties: Array<{ Id: number, Value: any }>;

but return TS
Properties: intId[];

This sounds like a must have, I'll work on it. Thanks!