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>
16 lines
No EOL
700 B
Text
16 lines
No EOL
700 B
Text
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/**
|
|
* COMPAT: update from the old TestDefn format (array of `expectations` per
|
|
* definition) to the new format (single `expectations` per def), doing our best
|
|
* generating some unique IDs.
|
|
* TODO: remove in Lighthouse 9+ once PubAds (and others?) are updated.
|
|
* @see https://github.com/GoogleChrome/lighthouse/issues/11950
|
|
* @param {ReadonlyArray<Smokehouse.BackCompatTestDefn>} allTestDefns
|
|
* @return {Array<Smokehouse.TestDfn>}
|
|
*/
|
|
export function updateTestDefnFormat(allTestDefns: ReadonlyArray<Smokehouse.BackCompatTestDefn>): Array<Smokehouse.TestDfn>;
|
|
//# sourceMappingURL=back-compat-util.d.ts.map |