Skip to main content
Module

x/ldkit/mod.ts>SchemaUpdateInterface

LDkit - Linked Data query toolkit for TypeScript developers
Latest
type alias SchemaUpdateInterface
Re-export
import { type SchemaUpdateInterface } from "https://deno.land/x/ldkit@2.0.0/mod.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