Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
21 lines
2.3 KiB
Plaintext
21 lines
2.3 KiB
Plaintext
export type { Breadcrumb, BreadcrumbHint, Context, Contexts, RequestEventData, SdkInfo, Event, EventHint, ErrorEvent, Exception, SeverityLevel, StackFrame, Stacktrace, Thread, User, Session, ReportDialogOptions, CaptureContext, ExclusiveEventHintOrCaptureContext, Log, LogSeverityLevel, } from '@sentry/core';
|
|
export type { BrowserOptions } from './client';
|
|
export { addEventProcessor, addBreadcrumb, addIntegration, captureException, captureEvent, captureFeedback, captureMessage, close, createTransport, lastEventId, flush, getClient, isInitialized, isEnabled, getCurrentScope, getIsolationScope, getGlobalScope, setCurrentClient, Scope, continueTrace, getTraceData, suppressTracing, SDK_VERSION, setContext, setExtra, setExtras, setTag, setTags, setUser, withScope, withIsolationScope, functionToStringIntegration, inboundFiltersIntegration, eventFiltersIntegration, dedupeIntegration, parameterize, startSession, captureSession, endSession, spanToJSON, spanToTraceHeader, spanToBaggageHeader, updateSpanName, metrics, } from '@sentry/core';
|
|
export { SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, } from '@sentry/core';
|
|
export { WINDOW } from './helpers';
|
|
export { BrowserClient } from './client';
|
|
export { makeFetchTransport } from './transports/fetch';
|
|
export { uiProfiler } from './profiling';
|
|
export { defaultStackParser, defaultStackLineParsers, chromeStackLineParser, geckoStackLineParser, opera10StackLineParser, opera11StackLineParser, winjsStackLineParser, } from './stack-parsers';
|
|
export { eventFromException, eventFromMessage, exceptionFromError } from './eventbuilder';
|
|
export { createUserFeedbackEnvelope } from './userfeedback';
|
|
export { getDefaultIntegrations, forceLoad, init, onLoad } from './sdk';
|
|
export { showReportDialog } from './report-dialog';
|
|
export { breadcrumbsIntegration } from './integrations/breadcrumbs';
|
|
export { globalHandlersIntegration } from './integrations/globalhandlers';
|
|
export { httpContextIntegration } from './integrations/httpcontext';
|
|
export { linkedErrorsIntegration } from './integrations/linkederrors';
|
|
export { browserApiErrorsIntegration } from './integrations/browserapierrors';
|
|
export { browserSessionIntegration } from './integrations/browsersession';
|
|
export { lazyLoadIntegration } from './utils/lazyLoadIntegration';
|
|
//# sourceMappingURL=exports.d.ts.map |