Rocky_Mountain_Vending/.pnpm-store/v10/files/17/9ae5ea5b2c081f817db6bad5a9954c6c10d1c7c0e8a961dd5ded10d5c17a56343cc5ba69f807ad513ff299c3e2bc40386dfa3b5ba743bdc0238e3ed469cb8b
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
477 B
Text

import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
import { HeadBucketCommandInput } from "../commands/HeadBucketCommand";
import { S3Client } from "../S3Client";
export declare const waitForBucketExists: (
params: WaiterConfiguration<S3Client>,
input: HeadBucketCommandInput
) => Promise<WaiterResult>;
export declare const waitUntilBucketExists: (
params: WaiterConfiguration<S3Client>,
input: HeadBucketCommandInput
) => Promise<WaiterResult>;