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>
12 lines
819 B
Text
12 lines
819 B
Text
import type * as Protocol from '../../../generated/protocol.js';
|
|
import type * as Handlers from '../handlers/handlers.js';
|
|
import * as Types from '../types/types.js';
|
|
export declare const stackTraceForEventInTrace: Map<Readonly<Handlers.Types.EnabledHandlerDataWithMeta<typeof Handlers.ModelHandlers>>, Map<Types.Events.Event, Protocol.Runtime.StackTrace>>;
|
|
export declare function clearCacheForTrace(parsedTrace: Handlers.Types.ParsedTrace): void;
|
|
/**
|
|
* This util builds a stack trace that includes async calls for a given
|
|
* event. It leverages data we collect from sampling to deduce sync
|
|
* stacks and trace event instrumentation on the V8 debugger to stitch
|
|
* them together.
|
|
*/
|
|
export declare function get(event: Types.Events.Event, parsedTrace: Handlers.Types.ParsedTrace): Protocol.Runtime.StackTrace | null;
|