Skip to main content
Module

x/ldkit/library/schema/interface.ts>SchemaUpdateInterface

LDkit - Linked Data query toolkit for TypeScript developers
Latest
type alias SchemaUpdateInterface
import { type SchemaUpdateInterface } from "https://deno.land/x/ldkit@2.0.0/library/schema/interface.ts";

Describes a shape of data for updating an entity, according to its data schema.

See Lens.prototype.update for usage example.

definition: Identity & [X in Exclude<keyof T, "@type">]?: T[X] extends ValidPropertyDefinition ? ConvertUpdateProperty<T[X]> : never