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>
11 lines
477 B
Text
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>;
|