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>
17 lines
1.1 KiB
Text
17 lines
1.1 KiB
Text
import type * as Graph from '../graph/graph.js';
|
|
import type * as Simulation from '../simulation/simulation.js';
|
|
import type * as Types from '../types/types.js';
|
|
import { type Extras, Metric, type MetricCoefficients, type MetricComputationDataInput, type MetricResult } from './Metric.js';
|
|
declare class LargestContentfulPaint extends Metric {
|
|
static get coefficients(): MetricCoefficients;
|
|
/**
|
|
* Low priority image nodes are usually offscreen and very unlikely to be the
|
|
* resource that is required for LCP. Our LCP graphs include everything except for these images.
|
|
*/
|
|
static isNotLowPriorityImageNode(node: Graph.Node): boolean;
|
|
static getOptimisticGraph(dependencyGraph: Graph.Node, processedNavigation: Types.Simulation.ProcessedNavigation): Graph.Node;
|
|
static getPessimisticGraph(dependencyGraph: Graph.Node, processedNavigation: Types.Simulation.ProcessedNavigation): Graph.Node;
|
|
static getEstimateFromSimulation(simulationResult: Simulation.Result): Simulation.Result;
|
|
static compute(data: MetricComputationDataInput, extras?: Omit<Extras, 'optimistic'>): MetricResult;
|
|
}
|
|
export { LargestContentfulPaint };
|