Rocky_Mountain_Vending/.pnpm-store/v10/files/c7/568a2f963aaa49b4d19bbd3d097d4c325070281873fe85c6abb346ef0366a1899a35fb70e319f027199962e54fd066f47852c3f1b2a91ca5fbdbd71dbbe8ec
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 { HeadObjectCommandInput } from "../commands/HeadObjectCommand";
import { S3Client } from "../S3Client";
export declare const waitForObjectNotExists: (
params: WaiterConfiguration<S3Client>,
input: HeadObjectCommandInput
) => Promise<WaiterResult>;
export declare const waitUntilObjectNotExists: (
params: WaiterConfiguration<S3Client>,
input: HeadObjectCommandInput
) => Promise<WaiterResult>;