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>
9 lines
441 B
Text
9 lines
441 B
Text
import { type LoggerFn } from '../../../utils/log.js';
|
|
import type { CdpTarget } from '../cdp/CdpTarget.js';
|
|
import type { RealmStorage } from '../script/RealmStorage.js';
|
|
import type { EventManager } from '../session/EventManager.js';
|
|
export declare class LogManager {
|
|
#private;
|
|
private constructor();
|
|
static create(cdpTarget: CdpTarget, realmStorage: RealmStorage, eventManager: EventManager, logger?: LoggerFn): LogManager;
|
|
}
|