Rocky_Mountain_Vending/.pnpm-store/v10/files/ca/b02ed449da5a802c4807d6cab8d5b25ae30d60d66b6dd817a80bba7f7bb40f7647c57f327b93e0c030649192d6a2bbc2c4f7a56b630ffee8576f9ac9b324e1
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

10 lines
No EOL
781 B
Text

import { InstrumentationModuleDefinition, InstrumentationModuleFile } from './types';
export declare class InstrumentationNodeModuleDefinition implements InstrumentationModuleDefinition {
name: string;
supportedVersions: string[];
patch?: ((exports: any, moduleVersion?: string | undefined) => any) | undefined;
unpatch?: ((exports: any, moduleVersion?: string | undefined) => void) | undefined;
files: InstrumentationModuleFile[];
constructor(name: string, supportedVersions: string[], patch?: ((exports: any, moduleVersion?: string | undefined) => any) | undefined, unpatch?: ((exports: any, moduleVersion?: string | undefined) => void) | undefined, files?: InstrumentationModuleFile[]);
}
//# sourceMappingURL=instrumentationNodeModuleDefinition.d.ts.map