UNPKG

rxdb

Version:

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

4 lines (3 loc) 359 B
import type { PreparedQuery, RxStorageQueryResult } from '../../types/index.d.ts'; import { RxStorageInstanceFoundationDB } from './rx-storage-instance-foundationdb.ts'; export declare function queryFoundationDB<RxDocType>(instance: RxStorageInstanceFoundationDB<RxDocType>, preparedQuery: PreparedQuery<RxDocType>): Promise<RxStorageQueryResult<RxDocType>>;