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>
28 lines
No EOL
736 B
Text
28 lines
No EOL
736 B
Text
export default Hreflang;
|
|
export type Source = string | LH.Audit.Details.NodeValue | undefined;
|
|
export type InvalidHreflang = {
|
|
source: Source;
|
|
subItems: {
|
|
type: "subitems";
|
|
items: SubItem[];
|
|
};
|
|
};
|
|
export type SubItem = {
|
|
reason: LH.IcuMessage;
|
|
};
|
|
declare class Hreflang extends Audit {
|
|
/**
|
|
* @param {LH.Artifacts} artifacts
|
|
* @return {LH.Audit.Product}
|
|
*/
|
|
static audit({ LinkElements }: LH.Artifacts): LH.Audit.Product;
|
|
}
|
|
export namespace UIStrings {
|
|
let title: string;
|
|
let failureTitle: string;
|
|
let description: string;
|
|
let unexpectedLanguage: string;
|
|
let notFullyQualified: string;
|
|
}
|
|
import { Audit } from '../audit.js';
|
|
//# sourceMappingURL=hreflang.d.ts.map |