Rocky_Mountain_Vending/.pnpm-store/v10/files/21/06afe712f31062d747c43ed82447d1069f0143a09fa14d9c5d4494f3e1f9261db5d413cdd6cf91e72cef05c97451cec834603929357edc6e7d0024c7ce7b95
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
506 B
Text

import { 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;