@aws-sdk/client-dynamodb
Version:
AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native
8 lines (7 loc) • 366 B
TypeScript
import type { Paginator } from "@smithy/types";
import { ScanCommandInput, ScanCommandOutput } from "../commands/ScanCommand";
import type { DynamoDBPaginationConfiguration } from "./Interfaces";
/**
* @public
*/
export declare const paginateScan: (config: DynamoDBPaginationConfiguration, input: ScanCommandInput, ...rest: any[]) => Paginator<ScanCommandOutput>;