Files
cherry-studio/packages/mcp-trace/trace-core/core/traceCache.ts
fullex dc06c103e0 chore[lint]: add import type lint (#11091)
chore: add import type lint
2025-11-01 10:40:02 +08:00

8 lines
202 B
TypeScript

import type { ReadableSpan } from '@opentelemetry/sdk-trace-base'
export interface TraceCache {
createSpan: (span: ReadableSpan) => void
endSpan: (span: ReadableSpan) => void
clear: () => void
}