@bahulneel/rdflib
Version:
an RDF library for node.js. Suitable for client and server side.
10 lines (9 loc) • 349 B
TypeScript
import Node from './node-internal';
import { DefaultGraphTermType } from './types';
import { DefaultGraph as TFDefaultGraph } from './tf-types';
/** The RDF default graph */
export default class DefaultGraph extends Node implements TFDefaultGraph {
termType: typeof DefaultGraphTermType;
constructor();
toCanonical(): string;
}