Rocky_Mountain_Vending/.pnpm-store/v10/files/17/b4e5131c4d0c5b056d51b1f6281a4ec0af749926f9db68a9c85a4e5c6523c9f884429f68f28dbb6cdea9b2d853ccccbda4a6861357ce4aef2a230f2529cbbb
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 { HeadObjectCommandInput } from "../commands/HeadObjectCommand";
import { S3Client } from "../S3Client";
/**
*
* @deprecated Use waitUntilObjectExists instead. waitForObjectExists does not throw error in non-success cases.
*/
export declare const waitForObjectExists: (params: WaiterConfiguration<S3Client>, input: HeadObjectCommandInput) => Promise<WaiterResult>;
/**
*
* @param params - Waiter configuration options.
* @param input - The input to HeadObjectCommand for polling.
*/
export declare const waitUntilObjectExists: (params: WaiterConfiguration<S3Client>, input: HeadObjectCommandInput) => Promise<WaiterResult>;