@dexwox-labs/a2a-core
Version:
Core types, validation and telemetry for Google's Agent-to-Agent (A2A) protocol - shared foundation for client and server implementations
23 lines • 737 B
TypeScript
/**
* @module TelemetryDecorators
* @description Method decorators for OpenTelemetry tracing
*
* This module re-exports telemetry decorators from the telemetry module for
* backward compatibility. New code should import directly from the telemetry
* module instead.
*
* @deprecated Import from '../telemetry' directly instead
*/
/**
* Method decorator for tracing method execution
*
* @deprecated Import from '../telemetry/decorators' directly instead
*/
export { Trace, TraceClass } from '../telemetry/decorators';
/**
* Status codes for OpenTelemetry spans
*
* @deprecated Import from '@opentelemetry/api' directly instead
*/
export { SpanStatusCode } from '@opentelemetry/api';
//# sourceMappingURL=telemetry.d.ts.map