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
it would be beneficial to have Array notation supported. Currently the workaround is to use the bracket notation, [TypeB] . Any updates are appreciated.
Also it might be nice to have custom types on the right side not get truncated. The short ones like string, number, any are not clipped, but if your class name exceeds around 20 characters, it's just gone.
given this declaration:
export interface TypeA {
id: string;
bTypes: Array;
}
export interface TypeB {
id: string;
}
the
bTypes
property is rendered as typeany
.The text was updated successfully, but these errors were encountered: