Rocky_Mountain_Vending/.pnpm-store/v10/files/f2/2971043c7c7b3020e110f962ec50819b9739bc309af0d371628b6096581e42bdd9e50dd6424d31a6d31ec454383699836b7b5f33c7f35b520223c5c108fa4b
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

17 lines
No EOL
766 B
Text

type ModuleInfo = Record<string, string>;
/**
* Add node modules / packages to the event.
* For this, multiple sources are used:
* - They can be injected at build time into the __SENTRY_SERVER_MODULES__ variable (e.g. in Next.js)
* - They are extracted from the dependencies & devDependencies in the package.json file
* - They are extracted from the require.cache (CJS only)
*/
export declare const modulesIntegration: () => {
name: string;
processEvent(event: import("@sentry/core").Event): import("@sentry/core").Event;
getModules: typeof _getModules;
};
/** Fetches the list of modules and the versions loaded by the entry file for your node.js app. */
declare function _getModules(): ModuleInfo;
export {};
//# sourceMappingURL=modules.d.ts.map