rdf-test-suite
Version:
Executes the RDF and SPARQL test suites.
13 lines (12 loc) • 370 B
TypeScript
import * as RDF from "@rdfjs/types";
import { IQueryResult, IQueryResultQuads } from "./IQueryEngine";
/**
* Holds quad-based query results.
*/
export declare class QueryResultQuads implements IQueryResultQuads {
readonly type = "quads";
value: RDF.Quad[];
constructor(value: RDF.Quad[]);
equals(that: IQueryResult): boolean;
toString(): string;
}