| 1 | import type { ReadableSpan } from '@opentelemetry/sdk-trace-base' |
| 2 | |
| 3 | export interface TraceCache { |
| 4 | createSpan: (span: ReadableSpan) => void |
| 5 | endSpan: (span: ReadableSpan) => void |
| 6 | clear: () => void |
| 7 | } |
nothing calls this directly
no outgoing calls
no test coverage detected