UNPKG

@rdfine/shacl

Version:

> ## @rdfine/shacl > ### Generated JavaScript types for Shapes Constraint Language (SHACL)

14 lines (13 loc) 1.18 kB
import * as rdfine from '@tpluscode/rdfine'; import { RdfineEnvironment } from '@tpluscode/rdfine/environment'; import type * as RDF from '@rdfjs/types'; import type { RdfResourceCore } from '@tpluscode/rdfine/RdfResource'; import type * as Sh from '../index.js'; export interface SPARQLSelectExecutable<D extends RDF.DatasetCore = RDF.DatasetCore> extends Sh.SPARQLExecutable<D>, rdfine.RdfResource<D> { select: string | undefined; } export declare function SPARQLSelectExecutableMixin<Base extends rdfine.Constructor>(Resource: Base): rdfine.Constructor<SPARQLSelectExecutable & RdfResourceCore> & Base; export declare namespace SPARQLSelectExecutableMixin { var appliesTo: RDF.NamedNode<string> & RDF.NamedNode<"http://www.w3.org/ns/shacl#SPARQLSelectExecutable">; var createFactory: (env: RdfineEnvironment) => import("@tpluscode/rdfine/factory").FullFactory<Sh.SPARQLSelectExecutable<RDF.DatasetCore<RDF.Quad, RDF.Quad>>> & import("@tpluscode/rdfine/factory").CurriedFactory<Sh.SPARQLSelectExecutable<RDF.DatasetCore<RDF.Quad, RDF.Quad>>> & import("@tpluscode/rdfine/factory").CurriedBlankFactory<Sh.SPARQLSelectExecutable<RDF.DatasetCore<RDF.Quad, RDF.Quad>>>; }