Files
klz-cables.com/.pnpm-store/v10/files/31/8032a1425654890324dc0da8d3a9c68fc98a8a64be4deb7529df7000a5c35c664a0b5250505480d0ec3a0529fb07b939acfdb64b67227fcb03c2d03b3e4c46
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

25 lines
671 B
Plaintext

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