Rocky_Mountain_Vending/.pnpm-store/v10/files/2c/d5ebe6e9bb34c3f7087bfa5124a221dfd1c86f33ee7f512517893148f744b30b271407c132e37df23ed76e940e0e1bf9eb7e9987d4f0eea699dc854c7ed331
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
242 B
Text

declare namespace escalade {
export type Callback = (
directory: string,
files: string[],
) => string | false | void;
}
declare function escalade(
directory: string,
callback: escalade.Callback,
): string | void;
export = escalade;