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>
24 lines
No EOL
1.1 KiB
Text
24 lines
No EOL
1.1 KiB
Text
export { LCPImageRecordComputed as LCPImageRecord };
|
|
declare const LCPImageRecordComputed: typeof LCPImageRecord & {
|
|
request: (dependencies: {
|
|
trace: LH.Trace;
|
|
devtoolsLog: LH.DevtoolsLog;
|
|
}, context: LH.Artifacts.ComputedContext) => Promise<import("../lib/network-request.js").NetworkRequest | undefined>;
|
|
};
|
|
/**
|
|
* @fileoverview Match the LCP event with the paint event to get the request of the image actually painted.
|
|
* This could differ from the `ImageElement` associated with the nodeId if e.g. the LCP
|
|
* was a pseudo-element associated with a node containing a smaller background-image.
|
|
*/
|
|
declare class LCPImageRecord {
|
|
/**
|
|
* @param {{trace: LH.Trace, devtoolsLog: LH.DevtoolsLog}} data
|
|
* @param {LH.Artifacts.ComputedContext} context
|
|
* @return {Promise<LH.Artifacts.NetworkRequest|undefined>}
|
|
*/
|
|
static compute_(data: {
|
|
trace: LH.Trace;
|
|
devtoolsLog: LH.DevtoolsLog;
|
|
}, context: LH.Artifacts.ComputedContext): Promise<LH.Artifacts.NetworkRequest | undefined>;
|
|
}
|
|
//# sourceMappingURL=lcp-image-record.d.ts.map |