UNPKG

rdf-data-factory

Version:

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

13 lines (12 loc) 433 B
import type * as RDF from '@rdfjs/types'; /** * A singleton term instance that represents the default graph. * It's only allowed to assign a DefaultGraph to the .graph property of a Quad. */ export declare class DefaultGraph implements RDF.DefaultGraph { static INSTANCE: DefaultGraph; readonly termType = "DefaultGraph"; readonly value = ""; private constructor(); equals(other?: RDF.Term | null): boolean; }