InsertableTypedNodeUnsafe

Packages > fluid-framework > InternalTypes > InsertableTypedNodeUnsafe

Unenforced version of InsertableTypedNode .

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 InsertableTypedNodeUnsafe<T extends Unenforced<TreeNodeSchema>> = [
    Unhydrated<NodeFromSchemaUnsafe<T>> | (T extends {
        implicitlyConstructable: true;
    } ? NodeBuilderDataUnsafe<T> : never)
][_InlineTrick];

Type Parameters

Parameter Constraint Description
T Unenforced<TreeNodeSchema>

Remarks

Do note use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.