Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/b66eafbed0b9399a9d548331e2b134f46b167d33a5735ccd1a9acc89bf8f09bfb6751e868b951d010039aa2e73c7c30a05eb99ac4834ce5172b376af4f9a0f
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

8 lines
263 B
Text

type Handler = (...evts: any[]) => void;
export type MittEmitter<T> = {
on(type: T, handler: Handler): void;
off(type: T, handler: Handler): void;
emit(type: T, ...evts: any[]): void;
};
export default function mitt(): MittEmitter<string>;
export {};