Rocky_Mountain_Vending/.pnpm-store/v10/files/21/43b29065ed4b17037352fa6a136bf3daf1ce78375a7cf26af6eecbd9e209c23c9322a23e5225b8f55b11e4fb334c0826d726b70f3923870de7a4d65aadc6dc
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

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;