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>
31 lines
No EOL
1.1 KiB
Text
31 lines
No EOL
1.1 KiB
Text
export default InteractiveMetric;
|
|
/**
|
|
* @fileoverview This audit identifies the time the page is "consistently interactive".
|
|
* Looks for the first period of at least 5 seconds after FCP where both CPU and network were quiet,
|
|
* and returns the timestamp of the beginning of the CPU quiet period.
|
|
* @see https://docs.google.com/document/d/1GGiI9-7KeY3TPqS3YT271upUVimo-XiL5mwWorDUD4c/edit#
|
|
*/
|
|
declare class InteractiveMetric extends Audit {
|
|
/**
|
|
* @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}}
|
|
*/
|
|
static get defaultOptions(): {
|
|
mobile: {
|
|
scoring: LH.Audit.ScoreOptions;
|
|
};
|
|
desktop: {
|
|
scoring: LH.Audit.ScoreOptions;
|
|
};
|
|
};
|
|
/**
|
|
* @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 description: string;
|
|
}
|
|
import { Audit } from '../audit.js';
|
|
//# sourceMappingURL=interactive.d.ts.map |