Rocky_Mountain_Vending/.pnpm-store/v10/files/c4/5157fb6b25c9b8f318bd353e216a8f8beba00187ae9d0c0b4585909fda499998769477bc5ee93609cccbd11e21c1d91cecbd5d456a2fd4373653e44700618b
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
315 B
Text

export interface IOptions {
allowIcannDomains: boolean;
allowPrivateDomains: boolean;
detectIp: boolean;
extractHostname: boolean;
mixedInputs: boolean;
validHosts: string[] | null;
validateHostname: boolean;
}
export declare function setDefaults(options?: Partial<IOptions>): IOptions;