Rocky_Mountain_Vending/.pnpm-store/v10/files/c1/aff176c872895b6258ce954a5078c5b8dd525667dfd29d2a18d24daffaae0624ec2a8cf1bffcec30ec99c0244e919bdca70fe5e4add393770305f8b150bcad
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

31 lines
928 B
Text

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import AuditDetails from '../../types/lhr/audit-details';
import {FormattedIcu as FormattedIcu_, IcuMessage as IcuMessage_} from '../../types/lhr/i18n';
import LHResult from '../../types/lhr/lhr';
import ReportResult_ from './report-result';
import Renderer_ from './report-renderer';
import * as Settings from '../../types/lhr/settings';
import Treemap_ from '../../types/lhr/treemap';
declare global {
// Expose global types in LH namespace.
module LH {
export import Result = LHResult;
export import ReportResult = ReportResult_;
export import Renderer = Renderer_;
export import Locale = Settings.Locale;
export type IcuMessage = IcuMessage_;
export type FormattedIcu<T> = FormattedIcu_<T>;
module Audit {
export import Details = AuditDetails;
}
export import Treemap = Treemap_;
}
}