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>
34 lines
No EOL
1.3 KiB
Text
34 lines
No EOL
1.3 KiB
Text
export default LargestContentfulPaintElement;
|
|
declare class LargestContentfulPaintElement extends Audit {
|
|
/**
|
|
* @param {LH.Artifacts} artifacts
|
|
* @return {LH.Audit.Details.Table|undefined}
|
|
*/
|
|
static makeElementTable(artifacts: LH.Artifacts): LH.Audit.Details.Table | undefined;
|
|
/**
|
|
* @param {number} metricLcp
|
|
* @param {LH.Artifacts.MetricComputationDataInput} metricComputationData
|
|
* @param {LH.Audit.Context} context
|
|
* @return {Promise<LH.Audit.Details.Table>}
|
|
*/
|
|
static makePhaseTable(metricLcp: number, metricComputationData: LH.Artifacts.MetricComputationDataInput, context: LH.Audit.Context): Promise<LH.Audit.Details.Table>;
|
|
/**
|
|
* @param {LH.Artifacts} artifacts
|
|
* @param {LH.Audit.Context} context
|
|
* @return {Promise<LH.Audit.Product>}
|
|
*/
|
|
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
|
|
}
|
|
export namespace UIStrings {
|
|
let title: string;
|
|
let description: string;
|
|
let columnPhase: string;
|
|
let columnPercentOfLCP: string;
|
|
let columnTiming: string;
|
|
let itemTTFB: string;
|
|
let itemLoadDelay: string;
|
|
let itemLoadTime: string;
|
|
let itemRenderDelay: string;
|
|
}
|
|
import { Audit } from './audit.js';
|
|
//# sourceMappingURL=largest-contentful-paint-element.d.ts.map |