Rocky_Mountain_Vending/.pnpm-store/v10/files/10/344a37ec0991107909d1718f4a0461c47177f44c960a17afa3713cb7ac8945d37802126c51e8bc471dfd3bf7d73d14b9e9310187e600e942f47f2e7ef842ca
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

37 lines
No EOL
1.2 KiB
Text

export { ViewportMetaComputed as ViewportMeta };
export type ViewportMetaResult = {
/**
* Whether the page has any viewport tag.
*/
hasViewportTag: boolean;
/**
* Whether the viewport tag is optimized for mobile screens.
*/
isMobileOptimized: boolean;
/**
* Warnings if the parser encountered invalid content in the viewport tag.
*/
parserWarnings: Array<string>;
/**
* The `content` attribute value, if a viewport was defined.
*/
rawContentString: string | undefined;
};
declare const ViewportMetaComputed: typeof ViewportMeta & {
request: (dependencies: {
name?: string;
content?: string;
property?: string;
httpEquiv?: string;
charset?: string;
node: import("../index.js").Artifacts.NodeDetails;
}[], context: LH.Artifacts.ComputedContext) => Promise<ViewportMetaResult>;
};
declare class ViewportMeta {
/**
* @param {LH.GathererArtifacts['MetaElements']} MetaElements
* @return {Promise<ViewportMetaResult>}
*/
static compute_(MetaElements: LH.GathererArtifacts["MetaElements"]): Promise<ViewportMetaResult>;
}
//# sourceMappingURL=viewport-meta.d.ts.map