Rocky_Mountain_Vending/.pnpm-store/v10/files/ce/ff2bf27bd9750f6d0d1b2189d29826278138d8949c1a37d8fe40e0802a0a12c55898e51763aa7efe5de89468e69de50c149e2f68cee7ba91c477fbcc4e8d11
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
706 B
Text

import { type ClientLogEntry } from '../../shared/forward-logs-shared';
export declare const logQueue: {
entries: Array<ClientLogEntry>;
onSocketReady: (socket: WebSocket) => void;
flushScheduled: boolean;
socket: WebSocket | null;
cancelFlush: (() => void) | null;
sourceType?: 'server' | 'edge-server';
router: 'app' | 'pages' | null;
scheduleLogSend: (entry: ClientLogEntry) => void;
};
export declare const forwardErrorLog: (args: any[]) => void;
export declare function logUnhandledRejection(reason: unknown): void;
export declare function forwardUnhandledError(error: Error): void;
export declare const initializeDebugLogForwarding: (router: "app" | "pages") => void;