UNPKG

rdf-data-factory

Version:

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

11 lines (10 loc) 313 B
import type * as RDF from '@rdfjs/types'; /** * A term that contains an IRI. */ export declare class NamedNode<Iri extends string = string> implements RDF.NamedNode<Iri> { readonly termType = "NamedNode"; readonly value: Iri; constructor(value: Iri); equals(other?: RDF.Term | null): boolean; }