Rocky_Mountain_Vending/.pnpm-store/v10/files/88/3744049b8de5841254ad4f7d724bbba014ac0ffd8407bcb4d53e0c67d10293209ee0dfa0ddc06804db3cb4a7ea78668c7f65f17537d95b9152dd23b54e9ef9
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
No EOL
1,016 B
Text

/**
* Resolves a backend node ID (from a trace event, protocol, etc) to the object ID for use with
* `Runtime.callFunctionOn`. `undefined` means the node could not be found.
*
* @param {LH.Gatherer.ProtocolSession} session
* @param {number} backendNodeId
* @return {Promise<string|undefined>}
*/
export function resolveNodeIdToObjectId(session: LH.Gatherer.ProtocolSession, backendNodeId: number): Promise<string | undefined>;
/**
* Resolves a proprietary devtools node path (created from page-function.js) to the object ID for use
* with `Runtime.callFunctionOn`. `undefined` means the node could not be found.
* Requires `DOM.getDocument` to have been called since the object's creation or it will always be `undefined`.
*
* @param {LH.Gatherer.ProtocolSession} session
* @param {string} path
* @return {Promise<string|undefined>}
*/
export function resolveDevtoolsNodePathToObjectId(session: LH.Gatherer.ProtocolSession, path: string): Promise<string | undefined>;
//# sourceMappingURL=dom.d.ts.map