import { type SchemaInterface } from "https://deno.land/x/ldkit/mod.ts";
Describes a data model of a data entity according to its schema,. as resolved by LDkit, i.e. the shape of data that LDkit returns when querying for entities.
See Lens.prototype.find for usage example.
Type Parameters
T extends Schema
definition: Identity & [X in Exclude<keyof T, "@type">]: T[X] extends ValidPropertyDefinition ? ConvertProperty<T[X]> : never