quadstore
Version:
Quadstore is a LevelDB-backed RDF graph database / triplestore for JavaScript runtimes (browsers, Node.js, Deno, Bun, ...) that implements the RDF/JS interfaces and supports SPARQL queries and querying across named graphs.
13 lines (12 loc) • 617 B
TypeScript
import type { TermName } from '../types/index.js';
import type { AbstractChainedBatchPutOptions, AbstractChainedBatchDelOptions } from 'abstract-level';
export declare const emptyObject: {
[key: string]: any;
};
export declare const boundary = "\uDBFF\uDFFF";
export declare const separator = "\0\0";
export declare const termNames: TermName[];
export declare const defaultIndexes: TermName[][];
export declare const levelPutOpts: AbstractChainedBatchPutOptions<any, any, any>;
export declare const levelDelOpts: AbstractChainedBatchDelOptions<any, any>;
export declare const emptyValue: Uint8Array<ArrayBuffer>;