first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import TelemetryClient = require("../Library/TelemetryClient");
declare class AutoCollectExceptions {
static INSTANCE: AutoCollectExceptions;
static UNCAUGHT_EXCEPTION_MONITOR_HANDLER_NAME: string;
static UNCAUGHT_EXCEPTION_HANDLER_NAME: string;
static UNHANDLED_REJECTION_HANDLER_NAME: string;
private static _RETHROW_EXIT_MESSAGE;
private static _FALLBACK_ERROR_MESSAGE;
private static _canUseUncaughtExceptionMonitor;
private _exceptionListenerHandle;
private _rejectionListenerHandle;
private _client;
private _isInitialized;
constructor(client: TelemetryClient);
isInitialized(): boolean;
enable(isEnabled: boolean): void;
dispose(): void;
}
export = AutoCollectExceptions;