Rocky_Mountain_Vending/.pnpm-store/v10/files/9c/a426bc3df988c4e47f4d5c93740ead0aaea8280e4b60d432e6377a70c915f576cbfcd8c450961fc8250309af3e0c1bba5a300d658bd52e12fe05238773f0eb
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 { HeadObjectCommandInput } from "../commands/HeadObjectCommand";
import { S3Client } from "../S3Client";
export declare const waitForObjectExists: (
params: WaiterConfiguration<S3Client>,
input: HeadObjectCommandInput
) => Promise<WaiterResult>;
export declare const waitUntilObjectExists: (
params: WaiterConfiguration<S3Client>,
input: HeadObjectCommandInput
) => Promise<WaiterResult>;