typescript-uml icon indicating copy to clipboard operation
typescript-uml copied to clipboard

Date relationship not needed

Open winuxue opened this issue 6 years ago • 0 comments

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

winuxue avatar Dec 05 '18 01:12 winuxue