/** * Observability Auto Instrument * * @module observability/auto-instrument */ export type { AutoInstrumentConfig } from "./types.js"; export { initAutoInstrumentation, isAutoInstrumentEnabled } from "./orchestrator.js"; export { createInstrumentedFetch, createInstrumentedFetch as instrumentFetch, instrumentHttpHandler, } from "./http-instrumentation.js"; export { instrumentErrorHandler, instrumentReactRender } from "./react-instrumentation.js"; export { instrument, instrumentBatch, instrumentSync } from "./wrappers.js"; //# sourceMappingURL=index.d.ts.map