Rocky_Mountain_Vending/.pnpm-store/v10/files/a1/c99dffb95ab756b325a9bebf1098bf23d1ad6137bfc77daf2e3eb42a401ffee8d0fb7700909ae2352d5571b39c26e7ef6be6336e72238a66e11bc1e9d93af7
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

33 lines
No EOL
1.2 KiB
Text

export type NavigationOptions = {
waitUntil: Array<"fcp" | "load" | "navigated">;
} & Partial<LH.Config.Settings>;
/**
* Navigates to the given URL, assuming that the page is not already on this URL.
* Resolves on the url of the loaded page, taking into account any redirects.
* Typical use of this method involves navigating to a neutral page such as `about:blank` in between
* navigations.
*
* @param {LH.Gatherer.Driver} driver
* @param {LH.NavigationRequestor} requestor
* @param {NavigationOptions} options
* @return {Promise<{requestedUrl: string, mainDocumentUrl: string, warnings: Array<LH.IcuMessage>}>}
*/
export function gotoURL(driver: LH.Gatherer.Driver, requestor: LH.NavigationRequestor, options: NavigationOptions): Promise<{
requestedUrl: string;
mainDocumentUrl: string;
warnings: Array<LH.IcuMessage>;
}>;
/**
* @param {{timedOut: boolean, requestedUrl: string, mainDocumentUrl: string; }} navigation
* @return {Array<LH.IcuMessage>}
*/
export function getNavigationWarnings(navigation: {
timedOut: boolean;
requestedUrl: string;
mainDocumentUrl: string;
}): Array<LH.IcuMessage>;
export namespace UIStrings {
let warningRedirected: string;
let warningTimeout: string;
}
//# sourceMappingURL=navigation.d.ts.map