Rocky_Mountain_Vending/.pnpm-store/v10/files/f5/fd897e5e0d566b2c670ed385a48635ce80bdbb3dcd297671ff5389f281d10fd434964e5c9d73b85bd6e7b5959bd4da64339a8fc6571a6cf931e48556a2e2ee
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

20 lines
903 B
Text

import * as Types from '../types/types.js';
export declare function reset(): void;
/**
* IMPORTANT: Before adding support for new initiator relationships in
* trace events consider using Perfetto's flow API on the events in
* question, so that they get automatically computed.
* @see {@link flowsHandlerData}
*
* The events manually computed here were added before we had support
* for flow events. As such they should be migrated to use the flow
* API so that no manual parsing is needed.
*/
export declare function handleEvent(event: Types.Events.Event): void;
export declare function finalize(): Promise<void>;
export interface InitiatorsData {
eventToInitiator: Map<Types.Events.Event, Types.Events.Event>;
initiatorToEvents: Map<Types.Events.Event, Types.Events.Event[]>;
}
export declare function data(): InitiatorsData;
export declare function deps(): ['Flows', 'AsyncJSCalls'];