Rocky_Mountain_Vending/.pnpm-store/v10/files/fa/df5bb59520ec3a427a1aeafb4dcd831429f489df19d61076cb46fcce331ca0d2ef22602605589a1d489116f0ce02bee07e65a0abf66c87751a2c99146a5d36
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

28 lines
947 B
Text

import { ConsoleLevel } from '../types-hoist/instrument';
interface ConsoleIntegrationOptions {
levels: ConsoleLevel[];
}
/**
* Captures calls to the `console` API as breadcrumbs in Sentry.
*
* By default the integration instruments `console.debug`, `console.info`, `console.warn`, `console.error`,
* `console.log`, `console.trace`, and `console.assert`. You can use the `levels` option to customize which
* levels are captured.
*
* @example
*
* ```js
* Sentry.init({
* integrations: [Sentry.consoleIntegration({ levels: ['error', 'warn'] })],
* });
* ```
*/
export declare const consoleIntegration: (options?: Partial<ConsoleIntegrationOptions> | undefined) => import("..").Integration;
/**
* Capture a console breadcrumb.
*
* Exported just for tests.
*/
export declare function addConsoleBreadcrumb(level: ConsoleLevel, args: unknown[]): void;
export {};
//# sourceMappingURL=console.d.ts.map