Rocky_Mountain_Vending/.pnpm-store/v10/files/16/d8b330bff06158e9ba3a331357dbc924ce9efd7f00e4fdb4dae6207bf733449a6593e90371e309da0cd8289c5734d4315088c7ba5dc9c5f5ed58c7401f4180
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

26 lines
No EOL
1.2 KiB
Text

import type { Client } from '../client';
import type { Event, EventHint } from '../types-hoist/event';
import type { Exception } from '../types-hoist/exception';
import type { ParameterizedString } from '../types-hoist/parameterize';
import type { SeverityLevel } from '../types-hoist/severity';
import type { StackFrame } from '../types-hoist/stackframe';
import type { StackParser } from '../types-hoist/stacktrace';
/**
* Extracts stack frames from the error.stack string
*/
export declare function parseStackFrames(stackParser: StackParser, error: Error): StackFrame[];
/**
* Extracts stack frames from the error and builds a Sentry Exception
*/
export declare function exceptionFromError(stackParser: StackParser, error: Error): Exception;
/**
* Builds and Event from a Exception
* @hidden
*/
export declare function eventFromUnknownInput(client: Client, stackParser: StackParser, exception: unknown, hint?: EventHint): Event;
/**
* Builds and Event from a Message
* @hidden
*/
export declare function eventFromMessage(stackParser: StackParser, message: ParameterizedString, level?: SeverityLevel, hint?: EventHint, attachStacktrace?: boolean): Event;
//# sourceMappingURL=eventbuilder.d.ts.map