RafaelSalguero/CSharp2TS

Missing parameter in converted constructor

Closed this issue · 2 comments

Hi,

when converting this C# code:

public MyClass(IServices services,
    ILogger<T> logger,
    IType<U> value) :
    base(services)
  {
    _logger = logger;
    _value = value;
  }

I get this Typescript code:

new(services: IServices, value: ILogger<T>): MyClass;

which is missing the logger parameter and got wrong the type of the value parameter.

Hi, I'll check this bug and fix it ASAP. Thanks!

Closed with 7730ce7