Open nvirth opened 2 years ago
Hi,
Using v1.6.1, this C# code:
namespace MyNamespace { [TsInterface] public class MyGenericBase<TValue> { } [TsInterface] public class MyDescendant : MyGenericBase<int> { } }
will result in this generated TypeScript code:
module MyNamespace { export interface IMyDescendant extends IMyGenericBase`1<number> // <-- Syntax error by `1 { } }
Hi,
Using v1.6.1, this C# code:
will result in this generated TypeScript code: