Rocky_Mountain_Vending/.pnpm-store/v10/files/6e/a888ea432cb754f387affe07b55edf5cbe79edc00c0731b07a6d4887b1d78e5fe87897c259c4a462e8463971fdd74872831a885099fcefe68bd83df59e4e33
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

10 lines
329 B
Text

import { ArnHostnameParams, BucketHostnameParams } from "./bucketHostnameUtils";
export interface BucketHostname {
hostname: string;
bucketEndpoint: boolean;
signingRegion?: string;
signingService?: string;
}
export declare const bucketHostname: (
options: BucketHostnameParams | ArnHostnameParams
) => BucketHostname;