Rocky_Mountain_Vending/.pnpm-store/v10/files/59/d093c2f6b157869245fc4308c8c638ee4656d9fe88a15c8eed9c02ea46889ebc728bb5782d19f33b3b947070b643bec447b2eb4a26822e79544410d4e8ed1c
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

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