pivotick - v0.0.1
    Preparing search index...

    Interface PropertyEntry

    Represents a single property entry to display in the properties panel.

    • name is the label or key of the property.
    • value is the value associated to the key for the node or edge.
    interface PropertyEntry {
        name:
            | string
            | HTMLElement
            | ((element: Node | Edge | null) => string | HTMLElement);
        value:
            | string
            | HTMLElement
            | ((element: Node | Edge | null) => string | HTMLElement);
    }
    Index

    Properties

    Properties

    name:
        | string
        | HTMLElement
        | ((element: Node | Edge | null) => string | HTMLElement)
    value:
        | string
        | HTMLElement
        | ((element: Node | Edge | null) => string | HTMLElement)