vscode-ts-uml
vscode-ts-uml copied to clipboard
type Array<complexType> is not picked up
given this declaration:
export interface TypeA { id: string; bTypes: Array<TypeB>; }
export interface TypeB { id: string; }
the bTypesproperty is rendered as type any.

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.