Rocky_Mountain_Vending/.pnpm-store/v10/files/ce/efa5a08e4974a86cbc46de7bddcaf83df57e9fda11d7da44e70084fc9f93003f9cd5d649b5ade537b0538d3bbf5cf1f1d2ba422a3122e5f4fc3c26d1723fb1
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

24 lines
1.6 KiB
Text
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import * as Platform from '../../../core/platform/platform.js';
import * as Handlers from '../handlers/handlers.js';
import * as Types from '../types/types.js';
import { type InsightModel, type InsightSetContext } from './types.js';
export declare const UIStrings: {
/** Title of an insight that provides details about if the page's viewport is optimized for mobile viewing. */
readonly title: "Optimize viewport for mobile";
/**
* @description Text to tell the user how a viewport meta element can improve performance. \xa0 is a non-breaking space
*/
readonly description: "Tap interactions may be [delayed by up to 300 ms](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/) if the viewport is not optimized for mobile.";
/**
* @description Text for a label describing the portion of an interaction event that was delayed due to a bad mobile viewport.
*/
readonly mobileTapDelayLabel: "Mobile tap delay";
};
export declare const i18nString: (id: string, values?: Record<string, string> | undefined) => {i18nId: string, values: Record<string, string|number>, formattedDefault: string};
export type ViewportInsightModel = InsightModel<typeof UIStrings, {
mobileOptimized: boolean | null;
viewportEvent?: Types.Events.ParseMetaViewport;
longPointerInteractions?: Types.Events.SyntheticInteractionPair[];
}>;
export declare function generateInsight(parsedTrace: Handlers.Types.ParsedTrace, context: InsightSetContext): ViewportInsightModel;
export declare function createOverlays(model: ViewportInsightModel): Types.Overlays.Overlay[];