Documentation
    Preparing search index...

    Type Alias IGraphEntityNode<Id, Type, NodeProps>

    IGraphEntityNode:
        | IGraphBaseEntityNode<Id, Type, NodeProps>
        | IGraphEventEntityNode<Id, Type, NodeProps>

    Combined type for graph nodes. It can be either a base node or an event node.

    Type Parameters

    • Id extends string
    • Type extends number

      The type of the node. It should be a number.

    • NodeProps extends Record<string, unknown>

      The properties of the node. It should be an object with string keys and unknown values.

    v0.0.1