Rocky_Mountain_Vending/.pnpm-store/v10/files/31/8032a1425654890324dc0da8d3a9c68fc98a8a64be4deb7529df7000a5c35c664a0b5250505480d0ec3a0529fb07b939acfdb64b67227fcb03c2d03b3e4c46
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

24 lines
671 B
Text

import { SerializedTraceData } from '../types-hoist/tracing';
/**
* Returns a string of meta tags that represent the current trace data.
*
* You can use this to propagate a trace from your server-side rendered Html to the browser.
* This function returns up to two meta tags, `sentry-trace` and `baggage`, depending on the
* current trace data state.
*
* @example
* Usage example:
*
* ```js
* function renderHtml() {
* return `
* <head>
* ${getTraceMetaTags()}
* </head>
* `;
* }
* ```
*
*/
export declare function getTraceMetaTags(traceData?: SerializedTraceData): string;
//# sourceMappingURL=meta.d.ts.map