Rocky_Mountain_Vending/.pnpm-store/v10/files/af/c1ebe735f5d6832b483cb5f60912f73da7d2db9a59a74a4b471150ed1d08e7246c4360d52d6c53141c893370390aff0df9c429d8994a8e51564dc63989de6e
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
380 B
Text

import { Paginator } from "@smithy/types";
import {
ListBucketsCommandInput,
ListBucketsCommandOutput,
} from "../commands/ListBucketsCommand";
import { S3PaginationConfiguration } from "./Interfaces";
export declare const paginateListBuckets: (
config: S3PaginationConfiguration,
input: ListBucketsCommandInput,
...rest: any[]
) => Paginator<ListBucketsCommandOutput>;