tplant
tplant copied to clipboard
Typescript to plantuml
Hello! I encountered a problem when generating diagram. Example `content-object.model.ts`: ``` export interface ContentObject extends PageOption, BaseContentModel { id: number; type: string; name: string; label: string; } ``` When I...
First, thanks for making tplant! It is very useful! The composition flag is good, but I'm suggesting the following improvements. Let me use this example from `test/Raytracer/Scene.ts`: ```typescript export interface...
Just ran tplant on my project, got strange results. It doesn't seem to understand that `default` is a keyword, and not the name of the class. Here are some examples:...
Hi, Today I tried to create a .png file twice and both times they came back corrupted and unable to display. File length 111.2 kB. The .svg is still working...
I started to create a small viewer: http://tplant.loopingz.com/ To avoid using a website to do the image generation we might me able to reuse the code from my viewer inside...
Opening this issue to request support for TSX files and to create class diagrams for React components. ### Main goals * Be capable of parsing TSX files to extract normal...
I am the maintainer of `tplant ^ -1` or in other words [plantuml-parser](https://github.com/Enteee/plantuml-parser) :smiley: . I do think it would be very beneficial for users if we could somehow make...
Hi, great library. A small issue I ran into, is that `tplant` will not throw an error/warning when the output directory does not exist. It simply says `Done in x...
Hi. This might be a big noob question, thanks for your help in advance. I am creating a new ionic project which uses Typescript and am now trying to generate...
Code example: ```typescript interface ComplexTypesInterface { type: Dict | undefined; } ``` Current transformation: ```plantuml @startuml interface ComplexTypesInterface { type: Dict } @enduml ``` Expected transformation: ```plantuml @startuml interface ComplexTypesInterface...