Rocky_Mountain_Vending/.pnpm-store/v10/files/ba/9aecd8bec2f21067e8e3ae3e716aad3faa2555472a09cdac6b84fa42147ba6403935b21ba80e5271d6827c6baa35084099f7027c5cacc65ccd6015d37e197d
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

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 };