Rocky_Mountain_Vending/.pnpm-store/v10/files/1d/e33aa749eb185e386c156bcba1f83e636034f36e2bb3419899adae77c35323a23526aee0e571fa9f99a53005e384c759f5f16e540687265fd31fbe5e104f83
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

41 lines
No EOL
1.6 KiB
Text

export default MaxPotentialFID;
export type LoafDebugDetails = {
type: "debugdata";
observedMaxDurationLoaf?: LH.TraceEvent | undefined;
observedMaxBlockingLoaf?: LH.TraceEvent | undefined;
observedLoafs: Array<{
startTime: number;
duration: number;
blockingDuration: number;
}>;
};
/**
* @fileoverview This metric is the duration of the longest task after FCP. It is meant to capture
* the worst case First Input Delay that a user might experience.
* Tasks before FCP are excluded because it is unlikely that the user will try to interact with a page before it has painted anything.
*/
declare class MaxPotentialFID extends Audit {
/**
* @return {LH.Audit.ScoreOptions}
*/
static get defaultOptions(): LH.Audit.ScoreOptions;
/**
* Extract potential LoAF replacements for MPFID from the trace to log in
* debugdata details.
* @param {LH.Artifacts.ProcessedTrace} processedTrace
* @param {LH.Artifacts.ProcessedNavigation} processedNavigation
* @return {LoafDebugDetails|undefined}
*/
static getLongAnimationFrameDetails(processedTrace: LH.Artifacts.ProcessedTrace, processedNavigation: LH.Artifacts.ProcessedNavigation): LoafDebugDetails | undefined;
/**
* @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=max-potential-fid.d.ts.map