(options: OpenTelemetrySpanContext, callback: (span: Span) => T)
| 116 | * it may just be a non-recording span if the span is not sampled or if tracing is disabled. |
| 117 | */ |
| 118 | export function startSpan<T>(options: OpenTelemetrySpanContext, callback: (span: Span) => T): T { |
| 119 | return _startSpan(options, callback, true); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Similar to `Sentry.startSpan`. Wraps a function with a span, but does not finish the span |
no test coverage detected