Skip to main content

InsertableField TypeAlias

Content which could be inserted into a field within a tree.

This API is provided as an alpha preview and may change without notice.

To use, import via fluid-framework/alpha.

For more information about our API support guarantees, see here.

Signature

export type InsertableField<TSchema extends ImplicitFieldSchema | UnsafeUnknownSchema> = [
TSchema
] extends [ImplicitFieldSchema] ? InsertableTreeFieldFromImplicitField<TSchema> : [TSchema] extends [UnsafeUnknownSchema] ? InsertableContent | undefined : never;

Type Parameters

Parameter Constraint Description
TSchema ImplicitFieldSchema | UnsafeUnknownSchema

Remarks

Extended version of InsertableTreeFieldFromImplicitField that also allows UnsafeUnknownSchema.

See Also

Input