import type { Span, SpanAttributes, SpanKindValue, SpanLink, SpanTimeInput } from '@sentry/core'; export type SpanCallback = (span?: Span, parentSpan?: Span) => R; export interface ExtendedSpanOptions { /** The name of the span */ name: string; internal?: boolean; /** Whether it propagates context (?=true) */ active?: boolean; attributes?: SpanAttributes; kind?: SpanKindValue; links?: SpanLink[]; startTime?: SpanTimeInput; } export type EngineSpanId = string; export type HrTime = [number, number]; export type EngineSpanKind = 'client' | 'internal'; export type EngineSpan = { id: EngineSpanId; parentId: string | null; name: string; startTime: HrTime; endTime: HrTime; kind: EngineSpanKind; attributes?: Record; links?: EngineSpanId[]; }; export interface TracingHelper { isEnabled(): boolean; getTraceParent(span?: Span): string; dispatchEngineSpans(spans: EngineSpan[]): void; getActiveContext(): Span | undefined; runInChildSpan(nameOrOptions: string | ExtendedSpanOptions, callback: SpanCallback): R; } export interface PrismaInstrumentationGlobalValue { helper?: TracingHelper; } //# sourceMappingURL=types.d.ts.map