Rocky_Mountain_Vending/.pnpm-store/v10/files/6e/0e570608bc26bda383dd5fff86f8d737211626a26db2b587f4126191fa3eaa7f55d9a01d90c3f269c33bf3c61d230c6d5064da62de530d8f761c2108ebe982
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

11 lines
368 B
Text

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