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>
15 lines
406 B
Text
15 lines
406 B
Text
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Most of our files use the global `LH` namespace to access our types.
|
|
* This file allows us to use the global namespace while iteratively converting files to use direct type imports.
|
|
* TODO: Remove this file and import all types directly.
|
|
*/
|
|
|
|
export * from '../lh.js';
|
|
|
|
export as namespace LH;
|