rdf-data-factory
Version:
A TypeScript/JavaScript implementation of the RDF/JS data factory.
11 lines (10 loc) • 311 B
TypeScript
import type * as RDF from '@rdfjs/types';
/**
* A term that represents an RDF blank node with a label.
*/
export declare class BlankNode implements RDF.BlankNode {
readonly termType = "BlankNode";
readonly value: string;
constructor(value: string);
equals(other?: RDF.Term | null): boolean;
}