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>
19 lines
No EOL
602 B
Text
19 lines
No EOL
602 B
Text
/**
|
|
* Opens a new tab to the online viewer and sends the local page's JSON results
|
|
* to the online viewer using URL.fragment
|
|
* @param {LH.Result} lhr
|
|
* @protected
|
|
*/
|
|
export function openViewer(lhr: LH.Result): Promise<void>;
|
|
/**
|
|
* Same as openViewer, but uses postMessage.
|
|
* @param {LH.Result} lhr
|
|
* @protected
|
|
*/
|
|
export function openViewerAndSendData(lhr: LH.Result): Promise<void>;
|
|
/**
|
|
* Opens a new tab to the treemap app and sends the JSON results using URL.fragment
|
|
* @param {LH.Result} json
|
|
*/
|
|
export function openTreemap(json: LH.Result): void;
|
|
//# sourceMappingURL=open-tab.d.ts.map |