Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/7f75406baf18b3681db6cf9f78f54da603ce8366196f74b51556503367c3666243d7c35809264bc30e9c9c86a5664c50c84df058bb9d065c75e5d5f822e833
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

14 lines
714 B
Text

import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
import { HeadBucketCommandInput } from "../commands/HeadBucketCommand";
import { S3Client } from "../S3Client";
/**
*
* @deprecated Use waitUntilBucketExists instead. waitForBucketExists does not throw error in non-success cases.
*/
export declare const waitForBucketExists: (params: WaiterConfiguration<S3Client>, input: HeadBucketCommandInput) => Promise<WaiterResult>;
/**
*
* @param params - Waiter configuration options.
* @param input - The input to HeadBucketCommand for polling.
*/
export declare const waitUntilBucketExists: (params: WaiterConfiguration<S3Client>, input: HeadBucketCommandInput) => Promise<WaiterResult>;