Skip to main content

InsertableObjectFromSchemaRecordAlphaUnsafe TypeAlias

Unenforced version of InsertableObjectFromSchemaRecordAlpha.

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 InsertableObjectFromSchemaRecordAlphaUnsafe<T extends RestrictiveStringRecord<System_Unsafe.ImplicitFieldSchemaUnsafe>> = {
readonly [Property in keyof T as FieldHasDefaultAlphaUnsafe<T[Property & string]> extends false ? Property : never]: System_Unsafe.InsertableTreeFieldFromImplicitFieldUnsafe<T[Property & string]>;
} & {
readonly [Property in keyof T as FieldHasDefaultAlphaUnsafe<T[Property & string]> extends true ? Property : never]?: System_Unsafe.InsertableTreeFieldFromImplicitFieldUnsafe<T[Property & string]>;
};

Type Parameters

ParameterConstraintDescription
TRestrictiveStringRecord<System_Unsafe.ImplicitFieldSchemaUnsafe>

Remarks

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

See Also

InsertableObjectFromSchemaRecordUnsafe