UNPKG

rdf-test-suite

Version:
12 lines (11 loc) 333 B
import { 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; }