Type Alias TypedNodeType<TNode>

TypedNodeType: BaseTypedNodeType<
    TNode,
    NodeTypeKey,
    {
        withKey<TKey extends string | number | symbol>(
            key: TKey,
        ): KeyedNodeType<TNode, "$$type" | TKey>;
    },
>

Represents a node type with associated lifecycle and behavior

Type Parameters