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
For example, we have the following CSharp classes:
public class ColorType
{
public int Red { get; set; }
public int Green { get; set; }
public int Blue { get; set; }
}
public class TransparentColor: ColorType
{
public int alpha { get; set; }
}
The generated TransparentColor typescript file is as follows:
For example, we have the following CSharp classes:
The generated TransparentColor typescript file is as follows:
But I believe it should be like this:
The text was updated successfully, but these errors were encountered: