Rocky_Mountain_Vending/.pnpm-store/v10/files/f7/c6b18458049cb6a75fa812c5408917d4aed23d3de17a4ae3ce6ab11de6d5444755f0e4c8cb1749f28c01ff0659917729ed74418f313fd7fe2770da122f330a
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

13 lines
393 B
Text

import { Fork } from "../types";
export default function (fork: Fork): {
geq: (than: any) => import("./types").Type<unknown>;
defaults: {
null: () => null;
emptyArray: () => never[];
false: () => boolean;
true: () => boolean;
undefined: () => void;
"use strict": () => string;
};
isPrimitive: import("./types").Type<unknown>;
};