1 | import type { Event, EventHint, Integration, IntegrationClass } from '@sentry/types';
|
2 | interface ExtraErrorDataOptions {
|
3 | |
4 |
|
5 |
|
6 | depth: number;
|
7 | |
8 |
|
9 |
|
10 |
|
11 |
|
12 | captureErrorCause: boolean;
|
13 | }
|
14 | export declare const extraErrorDataIntegration: (options?: Partial<ExtraErrorDataOptions> | undefined) => import("@sentry/types").IntegrationFnResult;
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | export declare const ExtraErrorData: IntegrationClass<Integration & {
|
20 | processEvent: (event: Event, hint: EventHint) => Event;
|
21 | }> & (new (options?: Partial<{
|
22 | depth: number;
|
23 | captureErrorCause: boolean;
|
24 | }>) => Integration);
|
25 | export {};
|
26 |
|
\ | No newline at end of file |