UNPKG

rxdb

Version:

A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/

4 lines (3 loc) 333 B
import type { PreparedQuery, RxStorageQueryResult } from '../../types/index.js'; import { RxStorageInstanceDenoKV } from "./rx-storage-instance-denokv.js"; export declare function queryDenoKV<RxDocType>(instance: RxStorageInstanceDenoKV<RxDocType>, preparedQuery: PreparedQuery<RxDocType>): Promise<RxStorageQueryResult<RxDocType>>;