Rocky_Mountain_Vending/.pnpm-store/v10/files/a8/37a6e1b4ecbd066724447d5b42e16f644dc8c2c2020dd8bc607b1396cd8b56228ead4f08b53d93bae2501aeabdcd20dc3562a58484913963675c323836c10a
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

41 lines
1.2 KiB
Text

/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @typedef ExportType
* @property {import('./index.js')['startFlow']} startFlow
* @property {import('./index.js')['navigation']} navigation
* @property {import('./index.js')['startTimespan']} startTimespan
* @property {import('./index.js')['snapshot']} snapshot
*/
/** @type {import('./index.js')['default'] & ExportType} */
const lighthouse = async function lighthouse(...args) {
const {default: lighthouse} = await import('./index.js');
return lighthouse(...args);
};
lighthouse.startFlow = async function startFlow(...args) {
const {startFlow} = await import('./index.js');
return startFlow(...args);
};
lighthouse.navigation = async function navigation(...args) {
const {navigation} = await import('./index.js');
return navigation(...args);
};
lighthouse.startTimespan = async function startTimespan(...args) {
const {startTimespan} = await import('./index.js');
return startTimespan(...args);
};
lighthouse.snapshot = async function snapshot(...args) {
const {snapshot} = await import('./index.js');
return snapshot(...args);
};
module.exports = lighthouse;