Rocky_Mountain_Vending/.pnpm-store/v10/files/da/62fc50cd676b3ebab3b671f4a9fdf1ea171469340d382d9df8cb112209cbad9b96fd83ee62e4567b76b6a2ca1cd6a51cc4d73f558620bb394797de5570a624
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

7 lines
487 B
Text

import type { PaginationConfiguration, Paginator } from "@smithy/types";
/**
* @internal
*
* Creates a paginator.
*/
export declare function createPaginator<PaginationConfigType extends PaginationConfiguration, InputType extends object, OutputType extends object>(ClientCtor: any, CommandCtor: any, inputTokenName: string, outputTokenName: string, pageSizeTokenName?: string): (config: PaginationConfigType, input: InputType, ...additionalArguments: any[]) => Paginator<OutputType>;