Rocky_Mountain_Vending/.pnpm-store/v10/files/2b/52946a96cf1ee1d613b6601feda3b99a56a721f02c39935adcfaa4c5a0e9bc714b98a8db92b7c0be323c93d56618bd43ef5c287c742ac5a3940759f8d430ce
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
483 B
Text

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