pivotick - v0.0.1
    Preparing search index...

    Interface HeaderMapEntry<T>

    Mapping functions to extract a node/edge's title and subtitle.

    Example for node. Replace with edge for edge mapping.

    title   = node.getData().label || "Could not resolve title"
    subtitle= node.getData().description || "Could not resolve subtitle"
    interface HeaderMapEntry<T extends Node | Edge> {
        subtitle: string | ((element: T) => string);
        title: string | ((element: T) => string);
    }

    Type Parameters

    Index

    Properties

    Properties

    subtitle: string | ((element: T) => string)
    title: string | ((element: T) => string)