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>
28 lines
No EOL
1 KiB
Text
28 lines
No EOL
1 KiB
Text
export default ValidSourceMaps;
|
|
declare class ValidSourceMaps extends Audit {
|
|
/**
|
|
* Returns true if the size of the script exceeds a static threshold.
|
|
* @param {LH.Artifacts.Script} script
|
|
* @param {LH.Artifacts.EntityClassification} classifiedEntities
|
|
* @return {boolean}
|
|
*/
|
|
static isLargeFirstPartyJS(script: LH.Artifacts.Script, classifiedEntities: LH.Artifacts.EntityClassification): boolean;
|
|
/**
|
|
* @param {LH.Artifacts} artifacts
|
|
* @param {LH.Audit.Context} context
|
|
*/
|
|
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<{
|
|
score: number;
|
|
details: import("../../types/lhr/audit-details.js").default.Table;
|
|
}>;
|
|
}
|
|
export namespace UIStrings {
|
|
let title: string;
|
|
let failureTitle: string;
|
|
let description: string;
|
|
let columnMapURL: string;
|
|
let missingSourceMapErrorMessage: string;
|
|
let missingSourceMapItemsWarningMesssage: string;
|
|
}
|
|
import { Audit } from './audit.js';
|
|
//# sourceMappingURL=valid-source-maps.d.ts.map |