Rocky_Mountain_Vending/.pnpm-store/v10/files/c1/c8536ed7771ae6592ad16ca20e4eea0be8a4c37b1601ed277324c3364de27ee5b0ea8f9551d988ec09665a98091da4f1963a59c44d50c5a17607444fe309ec
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
622 B
Text

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {IcuMessage as IcuMessage_} from '../../types/lhr/i18n';
import LHResult from '../../types/lhr/lhr';
import FlowResult_ from '../../types/lhr/flow-result';
import {Locale as Locale_} from '../../types/lhr/settings';
declare global {
// Expose global types in LH namespace.
module LH {
export import Result = LHResult;
export import FlowResult = FlowResult_;
export type IcuMessage = IcuMessage_;
export type IcuMessagePaths = LHResult.IcuMessagePaths;
export type Locale = Locale_;
}
}
export {};