Rocky_Mountain_Vending/.pnpm-store/v10/files/e5/ea61b5bd74d2333baff42d3f35109b84ce93e17f235e6980e2b2004e99223b6a744891b4e8a1614ea218d9958a08c1fccd1b5ed651e83dbb635647f14dce91
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

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