UNPKG

rdf-data-factory

Version:

A TypeScript/JavaScript implementation of the RDF/JS data factory.

16 lines (15 loc) 567 B
import type * as RDF from '@rdfjs/types'; /** * An instance of DefaultGraph represents the default graph. * It's only allowed to assign a DefaultGraph to the .graph property of a Quad. */ export declare class Quad implements RDF.BaseQuad { readonly termType = "Quad"; readonly value = ""; readonly subject: RDF.Term; readonly predicate: RDF.Term; readonly object: RDF.Term; readonly graph: RDF.Term; constructor(subject: RDF.Term, predicate: RDF.Term, object: RDF.Term, graph: RDF.Term); equals(other?: RDF.Term | null): boolean; }