Rocky_Mountain_Vending/.pnpm-store/v10/files/fa/826e59f9319582446a5a4e72d44d10dbd3253752ba16159b10c206779ee2a73202d7cead603405be43b264014a3a4af1f91f94b73a8cd39edc0cb53f61482b
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
379 B
Text

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