Rocky_Mountain_Vending/.pnpm-store/v10/files/29/e3c6cf528559ae64ee62faa642fdacfaadc0e755f4f61ef24496ea3c1cdad227e95ad8ebe53b2f1036075d1f0bf81c607fbad1f9cdb0d58b363f76c835ebbd
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
403 B
Text

import type { Paginator } from "@smithy/types";
import { ListObjectsV2CommandInput, ListObjectsV2CommandOutput } from "../commands/ListObjectsV2Command";
import { S3PaginationConfiguration } from "./Interfaces";
/**
* @public
*/
export declare const paginateListObjectsV2: (config: S3PaginationConfiguration, input: ListObjectsV2CommandInput, ...rest: any[]) => Paginator<ListObjectsV2CommandOutput>;