Rocky_Mountain_Vending/.pnpm-store/v10/files/86/1ae45e3f739bc6d895deb04b5dd810e182a0b70132b93a02496ec2da2b8299eebf0a4159d5bde79273ed838552e09de4d5b0e2b35d8ed77899e499a809565c
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

27 lines
850 B
Text

export interface LogEntry {
timestamp: string;
source: 'Server' | 'Browser';
level: string;
message: string;
}
export declare class FileLogger {
private logFilePath;
private isInitialized;
private logQueue;
private flushTimer;
private mcpServerEnabled;
initialize(distDir: string, mcpServerEnabled: boolean): void;
private formatTimestamp;
private formatLogEntry;
private scheduleFlush;
getLogQueue(): string[];
private flush;
private enqueueLog;
log(source: 'Server' | 'Browser', level: string, message: string): void;
logServer(level: string, message: string): void;
logBrowser(level: string, message: string): void;
forceFlush(): void;
destroy(): void;
}
export declare function getFileLogger(): FileLogger;
export declare function test__resetFileLogger(): void;