Rocky_Mountain_Vending/.pnpm-store/v10/files/97/c003598fc30f15ee35426c332a62e2d3e89e8c3ecaa2affb81f16eab2b709e8cbd4765c72579a78174deb5c917a1d6535d8ed1df67cef281c0410218ba42ac
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

8 lines
582 B
Text

import { Event, EventHint } from '../types-hoist/event';
import { Exception } from '../types-hoist/exception';
import { 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