Files
klz-cables.com/.pnpm-store/v10/files/ca/540ceb092b3d1eeadd07ccec96d6c4cc163669b08a10177bccd76818912b0be8035aa00001e075c89c5ab514302b62517ef5fceb473da6db747ee5fb3b0ff4
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

10 lines
463 B
Plaintext

import { SpanKind } from '@opentelemetry/api';
import type { AbstractSpan } from '../types';
/**
* Get the span kind from a span.
* For whatever reason, this is not public API on the generic "Span" type,
* so we need to check if we actually have a `SDKTraceBaseSpan` where we can fetch this from.
* Otherwise, we fall back to `SpanKind.INTERNAL`.
*/
export declare function getSpanKind(span: AbstractSpan): SpanKind;
//# sourceMappingURL=getSpanKind.d.ts.map