UNPKG

@aws-sdk/types

Version:
9 lines (8 loc) 244 B
import { Client } from "./client"; export type Paginator<T> = AsyncGenerator<T, T, unknown>; export interface PaginationConfiguration { client: Client<any, any, any>; pageSize?: number; startingToken?: any; stopOnSameToken?: boolean; }