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
12 lines
1.2 KiB
Plaintext
12 lines
1.2 KiB
Plaintext
export { addPerformanceInstrumentationHandler, addClsInstrumentationHandler, addTtfbInstrumentationHandler, addLcpInstrumentationHandler, addInpInstrumentationHandler, } from './metrics/instrument';
|
|
export { addPerformanceEntries, startTrackingInteractions, startTrackingLongTasks, startTrackingLongAnimationFrames, startTrackingWebVitals, startTrackingINP, registerInpInteractionListener, } from './metrics/browserMetrics';
|
|
export { startTrackingElementTiming } from './metrics/elementTiming';
|
|
export { extractNetworkProtocol } from './metrics/utils';
|
|
export { addClickKeypressInstrumentationHandler } from './instrument/dom';
|
|
export { addHistoryInstrumentationHandler } from './instrument/history';
|
|
export { fetch, setTimeout, clearCachedImplementation, getNativeImplementation } from './getNativeImplementation';
|
|
export { addXhrInstrumentationHandler, SENTRY_XHR_DATA_KEY } from './instrument/xhr';
|
|
export { getBodyString, getFetchRequestArgBody, serializeFormData, parseXhrResponseHeaders } from './networkUtils';
|
|
export { resourceTimingToSpanAttributes } from './metrics/resourceTiming';
|
|
export type { FetchHint, NetworkMetaWarning, XhrHint } from './types';
|
|
//# sourceMappingURL=index.d.ts.map |