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>
7 lines
323 B
Text
7 lines
323 B
Text
/**
|
|
* Evaluates whether one or more string values are valid host labels per RFC 1123.
|
|
*
|
|
* If allowSubDomains is true, then the provided value may be zero or more dotted
|
|
* subdomains which are each validated per RFC 1123.
|
|
*/
|
|
export declare const isValidHostLabel: (value: string, allowSubDomains?: boolean) => boolean;
|