Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
469 B
Text
10 lines
469 B
Text
import { SpanKind } from '@opentelemetry/api';
|
|
import { 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
|