effect-io-ai

Package: effect
Module: Graph

Graph.GraphVizOptions

Configuration options for GraphViz DOT format generation from graphs.

Signature

export interface GraphVizOptions<N, E> {
  readonly nodeLabel?: (data: N) => string
  readonly edgeLabel?: (data: E) => string
  readonly graphName?: string
}

Source

Since v3.18.0