/** * @module helper */ import * as DynamoDBv2 from '../aws-sdk-v2.types'; import { QueryRequest } from '../dynamo/request/query/query.request'; import { ScanRequest } from '../dynamo/request/scan/scan.request'; /** * When we cant load all the items of a table with one request, we will fetch as long as there is more data * available. This can be used with scan and query requests. */ export declare function fetchAll(request: ScanRequest | QueryRequest, startKey?: DynamoDBv2.Key): Promise; //# sourceMappingURL=fetch-all.function.d.ts.map