Rocky_Mountain_Vending/.pnpm-store/v10/files/70/faf711ddf3632ffd10b50860308b4848457fdcd7e980591f745e541756f107647c0e60bc17eab5631769fd14cc10ca5ae3aedefd338bc87e5648f97e3da358
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
968 B
Text

import { Client } from '../client';
import { Scope } from '../scope';
import { Span } from '../types-hoist/span';
import { SerializedTraceData } from '../types-hoist/tracing';
/**
* Extracts trace propagation data from the current span or from the client's scope (via transaction or propagation
* context) and serializes it to `sentry-trace` and `baggage` values to strings. These values can be used to propagate
* a trace via our tracing Http headers or Html `<meta>` tags.
*
* This function also applies some validation to the generated sentry-trace and baggage values to ensure that
* only valid strings are returned.
*
* @returns an object with the tracing data values. The object keys are the name of the tracing key to be used as header
* or meta tag name.
*/
export declare function getTraceData(options?: {
span?: Span;
scope?: Scope;
client?: Client;
}): SerializedTraceData;
//# sourceMappingURL=traceData.d.ts.map