You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ts-graphviz/03-guides/03-extending-ts-graphviz.md
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -190,6 +190,11 @@ For users interested in extending or customizing `ts-graphviz`, understanding th
190
190
- Convert DOT strings to streams or files.
191
191
- Use in environments where you need to render graphs to images or other formats.
192
192
193
+
:::note
194
+
You can use either `@ts-graphviz/adapter` or `ts-graphviz/adapter` imports. The latter is maintained for backward compatibility.
195
+
:::
196
+
197
+
193
198
### `@ts-graphviz/ast`
194
199
195
200
**Purpose**: Allows manipulation of the DOT language at the Abstract Syntax Tree (AST) level.
@@ -200,6 +205,10 @@ For users interested in extending or customizing `ts-graphviz`, understanding th
200
205
- Manipulate and transform the AST programmatically.
201
206
- Useful for advanced analysis or transformations of existing DOT code.
202
207
208
+
:::note
209
+
You can use either `@ts-graphviz/ast` or `ts-graphviz/ast` imports. The latter is maintained for backward compatibility.
210
+
:::
211
+
203
212
### `@ts-graphviz/common`
204
213
205
214
**Purpose**: Centralizes Graphviz domain knowledge, providing type definitions, constants, and utilities. It is designed to handle use cases such as extending types.
0 commit comments