1 | import type { IntegrationFn } from '@sentry/core';
|
2 | declare const LazyLoadableIntegrations: {
|
3 | readonly replayIntegration: "replay";
|
4 | readonly replayCanvasIntegration: "replay-canvas";
|
5 | readonly feedbackIntegration: "feedback";
|
6 | readonly feedbackModalIntegration: "feedback-modal";
|
7 | readonly feedbackScreenshotIntegration: "feedback-screenshot";
|
8 | readonly captureConsoleIntegration: "captureconsole";
|
9 | readonly contextLinesIntegration: "contextlines";
|
10 | readonly linkedErrorsIntegration: "linkederrors";
|
11 | readonly debugIntegration: "debug";
|
12 | readonly dedupeIntegration: "dedupe";
|
13 | readonly extraErrorDataIntegration: "extraerrordata";
|
14 | readonly httpClientIntegration: "httpclient";
|
15 | readonly reportingObserverIntegration: "reportingobserver";
|
16 | readonly rewriteFramesIntegration: "rewriteframes";
|
17 | readonly sessionTimingIntegration: "sessiontiming";
|
18 | readonly browserProfilingIntegration: "browserprofiling";
|
19 | readonly moduleMetadataIntegration: "modulemetadata";
|
20 | };
|
21 |
|
22 |
|
23 |
|
24 |
|
25 | export declare function lazyLoadIntegration(name: keyof typeof LazyLoadableIntegrations, scriptNonce?: string): Promise<IntegrationFn>;
|
26 | export {};
|
27 |
|
\ | No newline at end of file |