Rocky_Mountain_Vending/.pnpm-store/v10/files/b9/ec2ee92401010bf6881d55e1587e874133f63c42b8485b0523b6034c9559e32e700bab580c8fbbb1cf3aa2a2b83f9da15752a14ec7f3a8b8e32ebccbcb8020
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

34 lines
1.8 KiB
Text

import * as Handlers from '../handlers/handlers.js';
import type * as Types from '../types/types.js';
import { type InsightModel, type InsightSetContext } from './types.js';
export declare const UIStrings: {
/**
* @description Title of an insight that provides the user with the list of network requests that blocked and therefore slowed down the page rendering and becoming visible to the user.
*/
readonly title: "Render blocking requests";
/**
* @description Text to describe that there are requests blocking rendering, which may affect LCP.
*/
readonly description: string;
/**
* @description Label to describe a network request (that happens to be render-blocking).
*/
readonly renderBlockingRequest: "Request";
/**
* @description Label used for a time duration.
*/
readonly duration: "Duration";
/**
* @description Text status indicating that no requests blocked the initial render of a navigation
*/
readonly noRenderBlocking: "No render blocking requests for this navigation";
};
export declare const i18nString: (id: string, values?: Record<string, string> | undefined) => Record<string, string>;
export declare function isRenderBlocking(insight: InsightModel): insight is RenderBlockingInsightModel;
export type RenderBlockingInsightModel = InsightModel<typeof UIStrings, {
renderBlockingRequests: Types.Events.SyntheticNetworkRequest[];
requestIdToWastedMs?: Map<string, number>;
}>;
export declare function generateInsight(parsedTrace: Handlers.Types.ParsedTrace, context: InsightSetContext): RenderBlockingInsightModel;
export declare function createOverlayForRequest(request: Types.Events.SyntheticNetworkRequest): Types.Overlays.EntryOutline;
export declare function createOverlays(model: RenderBlockingInsightModel): Types.Overlays.Overlay[];