@omnist-dev/omnist
    Preparing search index...

    Interface Edge

    A single labeled edge (label, target) pointing to a child Node (spec §2.1).

    interface Edge {
        label: string;
        target: Node;
    }
    Index
    label: string

    The edge label.

    target: Node

    Target node along this edge.