NodeBuilderData TypeAlias
Given a node's schema, return the corresponding object from which the node could be built.
This API is reserved for internal system use and should not be imported directly. It may change at any time without notice.
For more information about our API support guarantees, see here.
Signature
export type NodeBuilderData<T extends TreeNodeSchemaCore<string, NodeKind, boolean>> = T extends TreeNodeSchemaCore<string, NodeKind, boolean, unknown, infer TBuild> ? TBuild : never;
Type Parameters
Parameter | Constraint | Description |
---|---|---|
T | TreeNodeSchemaCore<string, NodeKind, boolean> |