Interface RefNode<Type>

A reference to a node.

The type of the reference node.

interface RefNode<Type> {
    id: string;
    ref: {
        id: string;
        type: Type;
    };
    type: Ref;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

id: string

The unique identifier of the node.

ref: {
    id: string;
    type: Type;
}

The reference.

Type declaration

  • id: string

    The unique identifier of the reference node.

  • type: Type

    The type of the reference node.

type: Ref

The type of the node.