rdf-test-suite
Version:
Executes the RDF and SPARQL test suites.
12 lines (11 loc) • 338 B
TypeScript
import type { IQueryResult, IQueryResultBoolean } from './IQueryEngine';
/**
* Holds a boolean query result.
*/
export declare class QueryResultBoolean implements IQueryResultBoolean {
readonly type = "boolean";
value: boolean;
constructor(value: boolean);
equals(that: IQueryResult): boolean;
toString(): string;
}