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>
24 lines
No EOL
651 B
Text
24 lines
No EOL
651 B
Text
import type { 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 |