Rocky_Mountain_Vending/.pnpm-store/v10/files/d2/1187fb82d3c041934ab53d31ff9f567dfb9e00bd969fb496ce31a5746b67ba815973917d4a4bc667f8b0786f5620f146488da07f4ef01e529e0d15b8250fa2
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

4 lines
504 B
Text

import type { InstrumentationModule, InstrumentationOnRequestError } from '../../instrumentation/types';
export declare function getInstrumentationModule(projectDir: string, distDir: string): Promise<InstrumentationModule | undefined>;
export declare function instrumentationOnRequestError(projectDir: string, distDir: string, ...args: Parameters<InstrumentationOnRequestError>): Promise<void>;
export declare function ensureInstrumentationRegistered(projectDir: string, distDir: string): Promise<void>;