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>
23 lines
No EOL
946 B
Text
23 lines
No EOL
946 B
Text
export { MainResourceComputed as MainResource };
|
|
declare const MainResourceComputed: typeof MainResource & {
|
|
request: (dependencies: {
|
|
URL: LH.Artifacts["URL"];
|
|
devtoolsLog: LH.DevtoolsLog;
|
|
}, context: LH.Artifacts.ComputedContext) => Promise<import("../lib/network-request.js").NetworkRequest>;
|
|
};
|
|
/**
|
|
* @fileoverview This artifact identifies the main resource on the page. Current solution assumes
|
|
* that the main resource is the first non-redirected one.
|
|
*/
|
|
declare class MainResource {
|
|
/**
|
|
* @param {{URL: LH.Artifacts['URL'], devtoolsLog: LH.DevtoolsLog}} data
|
|
* @param {LH.Artifacts.ComputedContext} context
|
|
* @return {Promise<LH.Artifacts.NetworkRequest>}
|
|
*/
|
|
static compute_(data: {
|
|
URL: LH.Artifacts["URL"];
|
|
devtoolsLog: LH.DevtoolsLog;
|
|
}, context: LH.Artifacts.ComputedContext): Promise<LH.Artifacts.NetworkRequest>;
|
|
}
|
|
//# sourceMappingURL=main-resource.d.ts.map |