Rocky_Mountain_Vending/.pnpm-store/v10/files/4b/3d8770bea23b35ed69a5e4121d80a839bda599229fe2ef089be7f771105b0c3d0bb93ec71052608d7fb9c996501a63b568fe29d7041e3a5750ab70e2cad71d
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

14 lines
455 B
Text

export type EventCliSessionStopped = {
cliCommand: string;
nextVersion: string;
nodeVersion: string;
turboFlag?: boolean | null;
durationMilliseconds?: number | null;
pagesDir?: boolean;
appDir?: boolean;
isRspack: boolean;
};
export declare function eventCliSessionStopped(event: Omit<EventCliSessionStopped, 'nextVersion' | 'nodeVersion' | 'isRspack'>): {
eventName: string;
payload: EventCliSessionStopped;
}[];