quixotic-gol 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -29,20 +29,16 @@ declare interface DrawOp {
29
29
  style?: string;
30
30
  }
31
31
 
32
- export declare interface Example {
33
- title: string;
34
- chain: string;
35
- tx: string;
36
- nodeMapping: Record<string, NodeMapping>;
37
- dot: string;
38
- }
39
-
40
- export declare interface ExampleItem {
41
- filename: string;
42
- title: string;
43
- chain: string;
44
- tx: string;
45
- edgeCount: number;
32
+ /**
33
+ * Content structure for graph edges
34
+ */
35
+ export declare interface EdgeContent {
36
+ /** Unique identifier for the edge */
37
+ id: string;
38
+ /** Color of the edge */
39
+ color: string;
40
+ /** Text label on the edge */
41
+ text: string;
46
42
  }
47
43
 
48
44
  export declare interface GraphvizJson {
@@ -200,6 +196,18 @@ export declare interface LayoutConfig {
200
196
  nearlyAlignedThreshold: number;
201
197
  }
202
198
 
199
+ /**
200
+ * Content structure for graph nodes
201
+ */
202
+ export declare interface NodeContent {
203
+ /** Tags associated with the node */
204
+ tags: string[];
205
+ /** Display label for the node */
206
+ label: string;
207
+ /** Text content of the node */
208
+ text: string;
209
+ }
210
+
203
211
  export declare interface NodeMapping {
204
212
  sourceNodeId: string;
205
213
  targetNodeId: string;