effect-io-ai

Package: effect
Module: Graph

Graph.MermaidOptions

Configuration options for Mermaid diagram generation.

Signature

export interface MermaidOptions<N, E> {
  readonly nodeLabel?: (data: N) => string
  readonly edgeLabel?: (data: E) => string
  readonly diagramType?: MermaidDiagramType
  readonly direction?: MermaidDirection
  readonly nodeShape?: (data: N) => MermaidNodeShape
}

Source

Since v3.18.0