import { DocumentType } from "../DocumentAbstractions.js"; import { AbstractCommonApiForIndexes } from "../Indexes/AbstractCommonApiForIndexes.js"; export interface DocumentQueryOptions { collection?: string; indexName?: string; index?: new () => AbstractCommonApiForIndexes; documentType?: DocumentType; } export interface AdvancedDocumentQueryOptions extends DocumentQueryOptions { isMapReduce?: boolean; } //# sourceMappingURL=QueryOptions.d.ts.map