Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/2dc25a7add64c1f751e8f25940e34f8ea19792ceea066967a794f0994efee2fbcb002aec4dbdd31a40cc3017ec4c8995b919d81c6dfad1d559fc4a372f69dc
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

27 lines
945 B
Text

import type * as Protocol from '../../../generated/protocol.js';
import * as Types from '../types/types.js';
interface SelectorWithStyleSheedId {
selector: string;
styleSheetId: string;
}
interface InvalidatedNode {
frame: string;
backendNodeId: Protocol.DOM.BackendNodeId;
type: Types.Events.InvalidationEventType;
selectorList: SelectorWithStyleSheedId[];
ts: Types.Timing.Micro;
tts?: Types.Timing.Micro;
subtree: boolean;
lastUpdateLayoutTreeEventTs: Types.Timing.Micro;
}
export declare function reset(): void;
export declare function handleEvent(event: Types.Events.Event): void;
export declare function finalize(): Promise<void>;
export interface SelectorStatsData {
dataForUpdateLayoutEvent: Map<Types.Events.UpdateLayoutTree, {
timings: Types.Events.SelectorTiming[];
}>;
invalidatedNodeList: InvalidatedNode[];
}
export declare function data(): SelectorStatsData;
export {};