NodeBuilderData

Packages > fluid-framework > InternalTypes > NodeBuilderData

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 TreeNodeSchema> = T extends TreeNodeSchema<string, NodeKind, unknown, infer TBuild> ? TBuild : never;

Type Parameters

Parameter Constraint Description
T TreeNodeSchema