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>
21 lines
No EOL
823 B
Text
21 lines
No EOL
823 B
Text
export { LCPBreakdownComputed as LCPBreakdown };
|
|
declare const LCPBreakdownComputed: typeof LCPBreakdown & {
|
|
request: (dependencies: import("../../index.js").Artifacts.MetricComputationDataInput, context: LH.Artifacts.ComputedContext) => Promise<{
|
|
ttfb: number;
|
|
loadStart?: number;
|
|
loadEnd?: number;
|
|
}>;
|
|
};
|
|
declare class LCPBreakdown {
|
|
/**
|
|
* @param {LH.Artifacts.MetricComputationDataInput} data
|
|
* @param {LH.Artifacts.ComputedContext} context
|
|
* @return {Promise<{ttfb: number, loadStart?: number, loadEnd?: number}>}
|
|
*/
|
|
static compute_(data: LH.Artifacts.MetricComputationDataInput, context: LH.Artifacts.ComputedContext): Promise<{
|
|
ttfb: number;
|
|
loadStart?: number;
|
|
loadEnd?: number;
|
|
}>;
|
|
}
|
|
//# sourceMappingURL=lcp-breakdown.d.ts.map |