1 | import type { Integration } from '@sentry/core';
|
2 | import type { AnrIntegrationOptions } from './common';
|
3 | export declare const base64WorkerScript = "###AnrWorkerScript###";
|
4 | type AnrInternal = {
|
5 | startWorker: () => void;
|
6 | stopWorker: () => void;
|
7 | };
|
8 | type AnrReturn = (options?: Partial<AnrIntegrationOptions>) => Integration & AnrInternal;
|
9 | export declare const anrIntegration: AnrReturn;
|
10 | export declare function disableAnrDetectionForCallback<T>(callback: () => T): T;
|
11 | export declare function disableAnrDetectionForCallback<T>(callback: () => Promise<T>): Promise<T>;
|
12 | export {};
|
13 |
|
\ | No newline at end of file |