Rocky_Mountain_Vending/.pnpm-store/v10/files/cf/37376e1329e9147b1579752e4c560be48d52c4c142a5858e9e3288cdf021156e4ac48d3559862c72f9f5607adf3271e0f74e225d7adf25abda0d48f5cdcae9
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

19 lines
481 B
Text

export declare enum HostAddressType {
AAAA = "AAAA",
A = "A",
}
export interface HostAddress {
addressType: HostAddressType;
address: string;
hostName: string;
service?: string;
}
export interface HostResolverArguments {
hostName: string;
service?: string;
}
export interface HostResolver {
resolveAddress(args: HostResolverArguments): Promise<HostAddress[]>;
reportFailureOnAddress(addr: HostAddress): void;
purgeCache(args?: HostResolverArguments): void;
}