1 | import type { Mechanism, WrappedFunction } from '@sentry/core';
|
2 | export declare const WINDOW: import("@sentry/core").InternalGlobal & Window;
|
3 |
|
4 |
|
5 |
|
6 | export declare function shouldIgnoreOnError(): boolean;
|
7 |
|
8 |
|
9 |
|
10 | export declare function ignoreNextOnError(): void;
|
11 | type WrappableFunction = Function;
|
12 | export declare function wrap<T extends WrappableFunction>(fn: T, options?: {
|
13 | mechanism?: Mechanism;
|
14 | }): WrappedFunction<T>;
|
15 | export declare function wrap<NonFunction>(fn: NonFunction, options?: {
|
16 | mechanism?: Mechanism;
|
17 | }): NonFunction;
|
18 | export {};
|
19 |
|
\ | No newline at end of file |