Files
klz-cables.com/.pnpm-store/v10/files/98/e91e7d447509efda3ed7428bab09626b3a76dea151a96be833a3b4e6e5f01f57056405fed098e3d1ec7e52ce918632d160d42bad94fe6b02eda1b7dc986278
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

10 lines
497 B
Plaintext

import type { SpanContext } from '@opentelemetry/api';
/**
* OpenTelemetry only knows about SAMPLED or NONE decision,
* but for us it is important to differentiate between unset and unsampled.
*
* Both of these are identified as `traceFlags === TracegFlags.NONE`,
* but we additionally look at a special trace state to differentiate between them.
*/
export declare function getSamplingDecision(spanContext: SpanContext): boolean | undefined;
//# sourceMappingURL=getSamplingDecision.d.ts.map