typescript-uml
typescript-uml copied to clipboard
Missed relationships for arrays
If your .ts file has an array: the relationship between them is not being created.
Per example:
interface Invoice {
detail: InvoiceItem[]
}
interface InvoiceItem {
}
write this:
interface Invoice{
+detail : InvoiceItem[]
}
interface InvoiceItem{
}
missing this line:
Invoice --{ InvoiceItem