Rocky_Mountain_Vending/.pnpm-store/v10/files/e1/ba4cc5184b1f656ab3c8b44417bb549a1999eca785fa12c0a07f4019465be9564be63b62e5110c3724599072a7a7ddbd61b7d0eb99d474cd8cedad2dc51acd
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

8 lines
222 B
Text

import type { PaginationConfiguration } from "@smithy/types";
import { S3Client } from "../S3Client";
/**
* @public
*/
export interface S3PaginationConfiguration extends PaginationConfiguration {
client: S3Client;
}