Rocky_Mountain_Vending/.pnpm-store/v10/files/b7/fd110027c258aa6acf3677381bd282502a986e7458cd71871e01e7c0096b8efdc4b56591cb34f6e60b93d23414416c1881b7922f44a34962197c0bafe25f83
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

21 lines
1 KiB
Text

import { PropagationContext } from '../types-hoist/tracing';
import { TraceparentData } from '../types-hoist/transaction';
export declare const TRACEPARENT_REGEXP: RegExp;
/**
* Extract transaction context data from a `sentry-trace` header.
*
* @param traceparent Traceparent string
*
* @returns Object containing data from the header, or undefined if traceparent string is malformed
*/
export declare function extractTraceparentData(traceparent?: string): TraceparentData | undefined;
/**
* Create a propagation context from incoming headers or
* creates a minimal new one if the headers are undefined.
*/
export declare function propagationContextFromHeaders(sentryTrace: string | undefined, baggage: string | number | boolean | string[] | null | undefined): PropagationContext;
/**
* Create sentry-trace header from span context values.
*/
export declare function generateSentryTraceHeader(traceId?: string | undefined, spanId?: string | undefined, sampled?: boolean): string;
//# sourceMappingURL=tracing.d.ts.map