Rocky_Mountain_Vending/.pnpm-store/v10/files/25/5e23d7ba213dce180fa825718b643caedd452ce21446cfc0c5dd6469be2041658e65c5e29f08e972eb17609f76c5edc0e285c288c79fde0e37033ed09b8c06
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

30 lines
No EOL
1.1 KiB
Text

export { DocumentUrlsComputed as DocumentUrls };
declare const DocumentUrlsComputed: typeof DocumentUrls & {
request: (dependencies: {
trace: LH.Trace;
devtoolsLog: LH.DevtoolsLog;
}, context: LH.Artifacts.ComputedContext) => Promise<{
requestedUrl: string;
mainDocumentUrl: string;
}>;
};
/**
* @fileoverview Compute the navigation specific URLs `requestedUrl` and `mainDocumentUrl` in situations where
* the `URL` artifact is not present. This is not a drop-in replacement for `URL` but can be helpful in situations
* where getting the `URL` artifact is difficult.
*/
declare class DocumentUrls {
/**
* @param {{trace: LH.Trace, devtoolsLog: LH.DevtoolsLog}} data
* @param {LH.Artifacts.ComputedContext} context
* @return {Promise<{requestedUrl: string, mainDocumentUrl: string}>}
*/
static compute_(data: {
trace: LH.Trace;
devtoolsLog: LH.DevtoolsLog;
}, context: LH.Artifacts.ComputedContext): Promise<{
requestedUrl: string;
mainDocumentUrl: string;
}>;
}
//# sourceMappingURL=document-urls.d.ts.map