Rocky_Mountain_Vending/.pnpm-store/v10/files/bc/6abb2c54b5583a76e18658b14304dcf155097b1ff27b978d6d647f0b511ecc24f9262cf68d9388bd714123a6a8be12c798622f7ebaf208bf0d089e0bec8b4e
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

12 lines
421 B
Text

declare module 'robots-parser';
interface Robot {
isAllowed(url: string, ua?: string): boolean | undefined;
isDisallowed(url: string, ua?: string): boolean | undefined;
getMatchingLineNumber(url: string, ua?: string): number;
getCrawlDelay(ua?: string): number | undefined;
getSitemaps(): string[];
getPreferredHost(): string | null;
}
export default function robotsParser(url: string, robotstxt: string): Robot;