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>
13 lines
No EOL
441 B
Text
13 lines
No EOL
441 B
Text
/**
|
|
* @fileoverview Helper functions to transform an LHR into a proto-ready LHR.
|
|
*
|
|
* FIXME: This file is 100% technical debt. Our eventual goal is for the
|
|
* roundtrip JSON to match the Golden LHR 1:1.
|
|
*/
|
|
/**
|
|
* Transform an LHR into a proto-friendly, mostly-compatible LHR.
|
|
* @param {LH.Result} lhr
|
|
* @return {LH.Result}
|
|
*/
|
|
export function processForProto(lhr: LH.Result): LH.Result;
|
|
//# sourceMappingURL=proto-preprocessor.d.ts.map |