import type { TelemetryContext } from "../index.ts"; import type { RecordedTelemetrySpan } from "../memory.ts"; /** A fresh adapter instance and normalized snapshot reader owned by one conformance case. */ export interface TelemetryAdapterFixture extends AsyncDisposable { readonly context: TelemetryContext; getSpans(): Promise; } /** Creates an isolated adapter fixture for one conformance case. */ export type TelemetryAdapterFixtureFactory = () => Promise; /** A runner-independent conformance case that can be registered with any test framework. */ export interface TelemetryAdapterConformanceCase { readonly group: string; readonly name: string; run(): Promise; } //# sourceMappingURL=types.d.ts.map