Rocky_Mountain_Vending/.pnpm-store/v10/files/6b/29093c7a5763fa047a2bdd410575b3e7243b3adbab63e12ffd0003b7a0d3bcad6340c10882ae3c222136a0f300522308d9edd4d244bcfe5b099b1356b1fba0
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

3 lines
265 B
Text

export type Constructor<T, Args extends any[] = any[]> = new (...args: Args) => T;
export type AbstractConstructor<T, Args extends any[] = any[]> = (abstract new (...args: Args) => T);
export type ConstructorOrAbstract<T> = Constructor<T> | AbstractConstructor<T>;