1 | import type { Client, Integration, IntegrationClass } from '@sentry/types';
|
2 | interface CaptureConsoleOptions {
|
3 | levels?: string[];
|
4 | }
|
5 | export declare const captureConsoleIntegration: (options?: CaptureConsoleOptions | undefined) => import("@sentry/types").IntegrationFnResult;
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export declare const CaptureConsole: IntegrationClass<Integration & {
|
11 | setup: (client: Client) => void;
|
12 | }> & (new (options?: {
|
13 | levels?: string[];
|
14 | }) => Integration);
|
15 | export {};
|
16 |
|
\ | No newline at end of file |