import { ICollectionRepository, IGetDocumentsOptions } from "../../../web/database/firestore/types"; export interface IDocumentsQueryOptions extends IGetDocumentsOptions { databaseId?: string; select?: string[]; withSubcollections?: boolean; } export interface IAdminCollectionModel extends ICollectionRepository { select(constraint: IDocumentsQueryOptions['select']): this; /** * @description Enables fetching subcollections of the documents */ withSubcollections(): this; } //# sourceMappingURL=types.d.ts.map