UNPKG

lincd

Version:

LINCD is a JavaScript library for building user interfaces with linked data (also known as 'structured data', or RDF)

10 lines (9 loc) 430 B
import { ICoreIterable } from '../interfaces/ICoreIterable'; import { Graph, Quad } from '../models'; import { QuadSet } from '../collections/QuadSet'; export declare class NQuads { static fromGraphs(graphs: ICoreIterable<Graph>, includeGraphs?: boolean): string; static fromQuads(quadset: QuadSet | Quad[], includeGraphs?: boolean, fixedGraph?: Graph): string; private static checkUri; private static toString; }