Rocky_Mountain_Vending/.pnpm-store/v10/files/ca/540ceb092b3d1eeadd07ccec96d6c4cc163669b08a10177bccd76818912b0be8035aa00001e075c89c5ab514302b62517ef5fceb473da6db747ee5fb3b0ff4
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

10 lines
No EOL
463 B
Text

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