Rocky_Mountain_Vending/.pnpm-store/v10/files/f6/d8c853367c176d44e5723b840b9ca0f27d291fb671cc8abea3f452e94a235d53fd8b83e64ef31df522cdd4b0c8083f683a2315947cd0f4b50bc2620c713a03
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

28 lines
893 B
Text

import type * as Platform from '../../core/platform/platform.js';
import type * as Protocol from '../../generated/protocol.js';
export declare class ProfileNode {
callFrame: Protocol.Runtime.CallFrame;
callUID: string;
self: number;
total: number;
id: number;
parent: ProfileNode | null;
children: ProfileNode[];
functionName: string;
depth: number;
deoptReason: string | null;
constructor(callFrame: Protocol.Runtime.CallFrame);
get scriptId(): Protocol.Runtime.ScriptId;
get url(): Platform.DevToolsPath.UrlString;
get lineNumber(): number;
get columnNumber(): number;
setFunctionName(name: string | null): void;
}
export declare class ProfileTreeModel {
root: ProfileNode;
total: number;
maxDepth: number;
initialize(root: ProfileNode): void;
private assignDepthsAndParents;
private calculateTotals;
}