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>
8 lines
No EOL
588 B
Text
8 lines
No EOL
588 B
Text
import type { Event, EventHint } from '../types-hoist/event';
|
|
import type { Exception } from '../types-hoist/exception';
|
|
import type { StackParser } from '../types-hoist/stacktrace';
|
|
/**
|
|
* Creates exceptions inside `event.exception.values` for errors that are nested on properties based on the `key` parameter.
|
|
*/
|
|
export declare function applyAggregateErrorsToEvent(exceptionFromErrorImplementation: (stackParser: StackParser, ex: Error) => Exception, parser: StackParser, key: string, limit: number, event: Event, hint?: EventHint): void;
|
|
//# sourceMappingURL=aggregate-errors.d.ts.map |