UNPKG

syntropylog

Version:

An instance manager with observability for Node.js applications

9 lines (8 loc) 433 B
/** * @file src/http/index.ts * DESCRIPTION: * This file is the public entry point for all components related to HTTP instrumentation. * It defines the public API that framework users will consume to create and use adapters. */ export type { IHttpClientAdapter, AdapterHttpRequest, AdapterHttpResponse, AdapterHttpError, } from './adapters/adapter.types'; export type { InstrumentedHttpClient } from './InstrumentedHttpClient';