typescript-uml
typescript-uml copied to clipboard
Date relationship not needed
If your .ts file has a Date type: one unneeded relationship is being created.
Per example:
interface Person{
birth: Date
}
write this:
interface Person{
+birth : Date
}
Person --> Date