export type SparqlValueRaw = string | number | boolean; export interface SparqlValueObj { readonly type: 'uri' | 'bnode' | 'literal'; readonly value: string; readonly datatype?: string; readonly 'xml:lang'?: string; } export interface SparqlResults { readonly head: { readonly vars: readonly string[]; }; readonly results: { readonly bindings: readonly Record[]; }; } export type SimplifiedSparqlValueGroup = Record; export type SimplifiedSparqlValueObj = SparqlValueRaw | SimplifiedSparqlValueGroup; export type SimplifiedSparqlResult = Record; export type SimplifiedSparqlResults = SimplifiedSparqlResult[]; //# sourceMappingURL=sparql.d.ts.map