Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/9bc75e7855195e902ef4a51fbe345978e97e090989fd90b8c4e6fef0e2363eb627cfe87ef1c03ec27ac43a00bfb6a56cb1fcec269d8dd48b4a68521a4f9873
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

15 lines
301 B
Text

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