forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
14 lines (13 loc) · 1.03 KB
/
index.ts
File metadata and controls
14 lines (13 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export { BrowserConfiguration } from "./configuration/BrowserConfiguration.js";
export { BrowserGlobalHandlerPlugin } from "./plugins/BrowserGlobalHandlerPlugin.js";
export { BrowserLifeCyclePlugin } from "./plugins/BrowserLifeCyclePlugin.js";
export { BrowserWrapFunctions } from "./plugins/BrowserWrapFunctions.js";
export { BrowserErrorParser } from "./services/BrowserErrorParser.js";
export { BrowserModuleCollector } from "./services/BrowserModuleCollector.js";
export { BrowserRequestInfoCollector } from "./services/BrowserRequestInfoCollector.js";
export { BrowserLocalStorage } from "./storage/BrowserLocalStorage.js";
export { BrowserLocalStorageProvider as BrowserStorageProvider } from "./storage/BrowserLocalStorageProvider.js";
export { BrowserFetchSubmissionClient } from "./submission/BrowserFetchSubmissionClient.js";
export { BrowserExceptionlessClient } from "./BrowserExceptionlessClient.js";
import { BrowserExceptionlessClient } from "./BrowserExceptionlessClient.js";
export const Exceptionless = new BrowserExceptionlessClient();