Package: effect
Module: Graph
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
}
Since v3.18.0