typescript-uml
typescript-uml copied to clipboard
TypeScript to UML reverse engineering
Thanks!
Given: ```ts interface GenericNumber { Value: T; } ``` expected: ```ts interface GenericNumber{ +Value : T } ``` got: ```ts interface GenericNumber{ +Value : T } GenericNumber --> T ```
Given: ```ts enum Animal { Dog cat } ``` expected: ```ts enum Animal { Dog cat } ``` got: ```ts ```
If your .ts file has an array: the relationship between them is not being created. Per example: ```ts interface Invoice { detail: InvoiceItem[] } interface InvoiceItem { } ``` write...
If your .ts file has a Date type: one unneeded relationship is being created. Per example: ```ts interface Person{ birth: Date } ``` write this: ```ts interface Person{ +birth :...
Any chance there will be more updates to come? Last commit was a year ago :( Possibly some content in the README.md? This is a very nice little project, would...
Add a quick way to get this project up and running in an existing project.
Add a command line interface which: 1. Accepts a config file parameter 2. Parses a project (or files) 3. Generates one diagram
Add footer / header options to PlantUML formatter. http://plantuml.com/commons