DynamicNode
A dynamically discovered node whose concrete primitive is not known statically.
Import
import type { DynamicNode } from '@ngblocks/form-nodes';
When to use it
Use when the node kind is unknown but you know child names do not shadow common members. Choose AnyNode with $api when you cannot make that guarantee.
Declaration
type DynamicNode = PublicNode<AnyNode> & Omit<NodeApi, 'patch'>;