UNPKG

rdflib

Version:

an RDF library for node.js. Suitable for client and server side.

12 lines (11 loc) 274 B
import Node from './node-internal'; import { EmptyTermType } from './types'; import { Term } from './tf-types'; /** * An empty node */ export default class Empty extends Node implements Term { termType: typeof EmptyTermType; constructor(); toString(): string; }