Rocky_Mountain_Vending/.pnpm-store/v10/files/b6/438e46809b62dc18f55e863da7e915bb26c6e524191c3dd0d68f4ffe5ccd3fb9540626c29ce8c65c9a4813253063de56439338b38b44f4001ac71a87e72d0e
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

7 lines
449 B
Text

import type { IncomingMessage, ServerResponse } from 'http';
import type { DevToolsConfig } from '../dev-overlay/shared';
export declare function devToolsConfigMiddleware({ distDir, sendUpdateSignal, }: {
distDir: string;
sendUpdateSignal: (data: DevToolsConfig) => void;
}): (req: IncomingMessage, res: ServerResponse, next: () => void) => Promise<void>;
export declare function getDevToolsConfig(distDir: string): Promise<DevToolsConfig>;