Rocky_Mountain_Vending/.pnpm-store/v10/files/3b/37ea597a62c1f674bc4b9b2c83ebad1ca03b3cafadc3ac9c836d6613cf775012183f18bf7700eeb4ce4f3d2f36b2d52cc605f5fc96409160f6bf41aa2ceb82
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

14 lines
722 B
Text

import * as Types from '../types/types.js';
import type { HandlerName } from './types.js';
export interface WarningsData {
perEvent: Map<Types.Events.Event, Warning[]>;
perWarning: Map<Warning, Types.Events.Event[]>;
}
export type Warning = 'LONG_TASK' | 'IDLE_CALLBACK_OVER_TIME' | 'FORCED_REFLOW' | 'LONG_INTERACTION';
export declare const FORCED_REFLOW_THRESHOLD: Types.Timing.Micro;
export declare const LONG_MAIN_THREAD_TASK_THRESHOLD: Types.Timing.Micro;
export declare function reset(): void;
export declare function handleEvent(event: Types.Events.Event): void;
export declare function deps(): HandlerName[];
export declare function finalize(): Promise<void>;
export declare function data(): WarningsData;