Rocky_Mountain_Vending/.pnpm-store/v10/files/c8/58638b59928a0b1c45d0500f9ede3777d90f5ca229cc3bc7de7fb2c5d1f58cd429ef71a493d3de037029e0dae56fa4c76ae5387352eeff2fc18c8c70beed1c
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

16 lines
846 B
Text

import { StackLineParser, StackLineParserFn } from '../types-hoist/stacktrace';
export type GetModuleFn = (filename: string | undefined) => string | undefined;
/**
* Does this filename look like it's part of the app code?
*/
export declare function filenameIsInApp(filename: string, isNative?: boolean): boolean;
/** Node Stack line parser */
export declare function node(getModule?: GetModuleFn): StackLineParserFn;
/**
* Node.js stack line parser
*
* This is in @sentry/core so it can be used from the Electron SDK in the browser for when `nodeIntegration == true`.
* This allows it to be used without referencing or importing any node specific code which causes bundlers to complain
*/
export declare function nodeStackLineParser(getModule?: GetModuleFn): StackLineParser;
//# sourceMappingURL=node-stack-trace.d.ts.map