Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/7ccadd5c587f2502754a771428af94257df05a5cc5105a90dc38a68b5b50f5aa80912582c0208f09c2c33717c0035004f2d6c028015a0507848c6d713a8c46
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

13 lines
686 B
Text

import type * as Types from '../types/types.js';
export declare class SyntheticEventsManager {
#private;
static activate(manager: SyntheticEventsManager): void;
static createAndActivate(rawEvents: readonly Types.Events.Event[]): SyntheticEventsManager;
static getActiveManager(): SyntheticEventsManager;
static reset(): void;
static registerSyntheticEvent<T extends Types.Events.SyntheticBased>(syntheticEvent: Omit<T, '_tag'>): T;
private constructor();
syntheticEventForRawEventIndex(rawEventIndex: number): Types.Events.SyntheticBased;
getSyntheticTraces(): Types.Events.SyntheticBased[];
getRawTraceEvents(): readonly Types.Events.Event[];
}