UNPKG

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.

3 lines (2 loc) 185 B
import { StreamLike } from '../types/index.js'; export declare const consumeInBatches: <T>(source: StreamLike<T>, batchSize: number, onEachBatch: (items: T[]) => any) => Promise<void>;