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>
16 lines
No EOL
528 B
Text
16 lines
No EOL
528 B
Text
interface CaptureConsoleOptions {
|
|
levels?: string[];
|
|
/**
|
|
* By default, Sentry will mark captured console messages as handled.
|
|
* Set this to `false` if you want to mark them as unhandled instead.
|
|
*
|
|
* @default true
|
|
*/
|
|
handled?: boolean;
|
|
}
|
|
/**
|
|
* Send Console API calls as Sentry Events.
|
|
*/
|
|
export declare const captureConsoleIntegration: (options?: CaptureConsoleOptions | undefined) => import("../types-hoist/integration").Integration;
|
|
export {};
|
|
//# sourceMappingURL=captureconsole.d.ts.map |