diff --git a/src/models/overrides.tsx b/src/models/overrides.tsx index 5c08b293b..d1d4c008d 100644 --- a/src/models/overrides.tsx +++ b/src/models/overrides.tsx @@ -2,13 +2,26 @@ import { AnyProperty } from "./properties"; import { EntitySchema } from "./entities"; import { EntityCollection } from "./collections"; -export type PartialProperties = Record>; +/** + * Use to resolve the schema properties for specific path, entity id or values. + * @category Models + */ +export type PartialProperties = Record>; +/** + * Use to resolve the schema properties for specific path, entity id or values. + * @category Models + */ export type PartialSchema = Omit>, "properties"> & { properties: PartialProperties }; + +/** + * Use to resolve the schema properties for specific path, entity id or values. + * @category Models + */ export type PartialEntityCollection = Omit>, "schema"> & { schema?: PartialSchema