ObjectFromSchemaRecord TypeAlias
Generates the properties for an ObjectNode from its field schema object.
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 ObjectFromSchemaRecord<T extends RestrictiveStringRecord<ImplicitFieldSchema>> = {
-readonly [Property in keyof T]: Property extends string ? TreeFieldFromImplicitField<T[Property]> : unknown;
};
Type Parameters
Parameter | Constraint | Description |
---|---|---|
T | RestrictiveStringRecord<ImplicitFieldSchema> |