UNPKG

rdf-data-factory

Version:

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

11 lines (10 loc) 288 B
import type * as RDF from '@rdfjs/types'; /** * A term that represents a variable. */ export declare class Variable implements RDF.Variable { readonly termType = "Variable"; readonly value: string; constructor(value: string); equals(other?: RDF.Term | null): boolean; }