Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/8033983060bbcf16a483da590b2596fd2df21552cf0ebdd38b179e6a4f3af17f1479d0de51b379adca5fbab7757c4a0bd3e4e59ff659af02c5348a64115d98
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

11 lines
236 B
Text

type Promisable<T> = T | Promise<T>;
export type Callback = (
directory: string,
files: string[],
) => Promisable<string | false | void>;
export default function (
directory: string,
callback: Callback,
): Promise<string | void>;