Rocky_Mountain_Vending/.pnpm-store/v10/files/ac/099ae22035e6449b35dd9121bcbb8b9dc1d0304f5cd0654a17e52bfe8a3750836805e8d23daf14630b80369e05875fbbb8d88b756174f79c0124cc2d84edf6
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

5 lines
137 B
Text

export type ITrie = [0 | 1, {
[label: string]: ITrie;
}];
export declare const exceptions: ITrie;
export declare const rules: ITrie;