Rocky_Mountain_Vending/.pnpm-store/v10/files/6d/0ea56dd3ce520f412da298c34343c731f2e0a7260faac056ee6c277171853ad43669bc5424896b382502e904ec094d1112e041215c8f56209da28eb46bc854
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

18 lines
No EOL
761 B
Text

/**
* @param {Trace.Types.Events.Event[]} traceEvents
* @return {Promise<{parsedTrace: Trace.Handlers.Types.ParsedTrace, insights: Trace.Insights.Types.TraceInsightSets, model: Trace.TraceModel.Model}>}
*/
export function analyzeEvents(traceEvents: Trace.Types.Events.Event[]): Promise<{
parsedTrace: Trace.Handlers.Types.ParsedTrace;
insights: Trace.Insights.Types.TraceInsightSets;
model: Trace.TraceModel.Model;
}>;
/**
* @param {string} filename
* @returns {ReturnType<analyzeEvents>}
*/
export function analyzeTrace(filename: string): ReturnType<typeof analyzeEvents>;
export function polyfillDOMRect(): void;
export type Trace = typeof Trace;
import * as Trace from './models/trace/trace.js';
//# sourceMappingURL=analyze-trace.d.mts.map