MolView API
    Preparing search index...

    Interface Arrow<Anchor, V>

    interface Arrow<Anchor = string, V = Vec2> {
        type: Arrow_Type;
        start: Anchor | V;
        end: Anchor | V;
        path: Path<V>;
    }

    Type Parameters

    • Anchor = string
    • V = Vec2
    Index
    start: Anchor | V
    end: Anchor | V
    path: Path<V>