Rocky_Mountain_Vending/.pnpm-store/v10/files/00/df226059daa321d7d805a4cf723d95c79e802efbf955a4fa2ac7ef30bf9dbe7fe95de2f812a648dd2f859a4f7b54040b9a328357412745869abea9f5bd8217
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

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