import { AxioDBCloud } from './AxioDBCloud.client'; /** Mirrors the Reader class API (chainable query builder). */ export default class ReaderProxy { private client; private dbName; private collectionName; private queryFilter; private limitValue?; private skipValue?; private sortValue?; private findOneValue; constructor(client: AxioDBCloud, dbName: string, collectionName: string, query: object); Limit(limit: number): this; Skip(skip: number): this; Sort(sort: object): this; findOne(value: boolean): this; exec(): Promise; }