Rocky_Mountain_Vending/.pnpm-store/v10/files/61/93667ea5db0882578c420eb46892cafcfcabc8c7bd54b7e7f5ba86ab42e80b372558e9ac6fa26148daa087b7b8a9b66d39222aadef4c36b67892f1c0b90412
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
497 B
Text

import type { EndpointVariant } from "./EndpointVariant";
/**
* @internal
* @deprecated unused as of endpointsRuleSets.
*/
export interface GetHostnameFromVariantsOptions {
useFipsEndpoint: boolean;
useDualstackEndpoint: boolean;
}
/**
* @internal
* @deprecated unused as of endpointsRuleSets.
*/
export declare const getHostnameFromVariants: (variants: EndpointVariant[] | undefined, { useFipsEndpoint, useDualstackEndpoint }: GetHostnameFromVariantsOptions) => string | undefined;