tsdiagram
tsdiagram copied to clipboard
Create diagrams and plan your code with TypeScript.
Hi there, First off, thanks for the public code. I found it when trying to export SVG from React Flow. I started with a new template which fetched the new...
Upgrade to @xyflow/react@12 To fix: - [ ] Auto-fit performance - [ ] Broken node size caching - [ ] Broken edges on SVG export (could be related to https://github.com/3rd/tsdiagram/issues/15)
Hello, is it possible to generate svg from command line? It would be an awesome feature if we are able to generate them via script or even within CI systems...
Any chance you'd consider adding a description to the fields? Could be implemented for example using [decorators](https://www.typescriptlang.org/docs/handbook/decorators.html), would look like this: ```typescript interface SomeType { fieldWithNoDescription: string; @Description("some description") fieldWithDescription:...