Rocky_Mountain_Vending/.pnpm-store/v10/files/de/c1914de30bf06ef8d5311b123efa7520aedb317d0956bcc261eea63c5f2df7baa2b11363a7804abbc8c90e63c276a45bf2cc0f3f68b86bc1a89530aec356b2
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

42 lines
No EOL
2.2 KiB
Text

/**
* Returns an error if the original network request failed or wasn't found.
* @param {LH.Artifacts.NetworkRequest|undefined} mainRecord
* @param {{warnings: Array<string | LH.IcuMessage>, ignoreStatusCode?: LH.Config.Settings['ignoreStatusCode']}} context
* @return {LH.LighthouseError|undefined}
*/
export function getNetworkError(mainRecord: LH.Artifacts.NetworkRequest | undefined, context: {
warnings: Array<string | LH.IcuMessage>;
ignoreStatusCode?: LH.Config.Settings["ignoreStatusCode"];
}): LH.LighthouseError | undefined;
/**
* Returns an error if we ended up on the `chrome-error` page and all other requests failed.
* @param {LH.Artifacts.NetworkRequest|undefined} mainRecord
* @param {Array<LH.Artifacts.NetworkRequest>} networkRecords
* @return {LH.LighthouseError|undefined}
*/
export function getInterstitialError(mainRecord: LH.Artifacts.NetworkRequest | undefined, networkRecords: Array<LH.Artifacts.NetworkRequest>): LH.LighthouseError | undefined;
/**
* Returns an error if the page load should be considered failed, e.g. from a
* main document request failure, a security issue, etc.
* @param {LH.LighthouseError|undefined} navigationError
* @param {{url: string, ignoreStatusCode?: LH.Config.Settings['ignoreStatusCode'], networkRecords: Array<LH.Artifacts.NetworkRequest>, warnings: Array<string | LH.IcuMessage>}} context
* @return {LH.LighthouseError|undefined}
*/
export function getPageLoadError(navigationError: LH.LighthouseError | undefined, context: {
url: string;
ignoreStatusCode?: LH.Config.Settings["ignoreStatusCode"];
networkRecords: Array<LH.Artifacts.NetworkRequest>;
warnings: Array<string | LH.IcuMessage>;
}): LH.LighthouseError | undefined;
/**
* Returns an error if we try to load a non-HTML page.
* Expects a network request with all redirects resolved, otherwise the MIME type may be incorrect.
* @param {LH.Artifacts.NetworkRequest|undefined} finalRecord
* @return {LH.LighthouseError|undefined}
*/
export function getNonHtmlError(finalRecord: LH.Artifacts.NetworkRequest | undefined): LH.LighthouseError | undefined;
export namespace UIStrings {
let warningXhtml: string;
let warningStatusCode: string;
}
//# sourceMappingURL=navigation-error.d.ts.map