Rocky_Mountain_Vending/.pnpm-store/v10/files/54/c450bdc7fee5be15d0518f2f006489fb99f99958c3ef500276e25187aa7c296529ab5328fe5aabd880b30f72458e6cfaa04d95625d9bd8e7dd68f2e9aa3c6c
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
No EOL
1 KiB
Text

import type { PropagationContext } from '../types-hoist/tracing';
import type { 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