Rocky_Mountain_Vending/.pnpm-store/v10/files/9e/cc222342df93b613e7f47d311949f187506fab9a3002c4b81f1a88fae43e0e53378fdcd5df9e4fb94e183d973ded72e21c9d8c7894bfeb664fdef9cb75c6b5
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
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