rdf-test-suite
Version:
Executes the RDF and SPARQL test suites.
13 lines (12 loc) • 380 B
TypeScript
import type * as RDF from '@rdfjs/types';
import type { 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;
}