Files
klz-cables.com/.pnpm-store/v10/files/30/5ee6b258c433b59306712c57daedb9404d489e4d2251e1509ad8df61d32cc5765552fc17dee8e6b1110e717602c833e95224db37004d15e7383f715ca954e7
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

15 lines
625 B
Plaintext

import { CoreOptions } from '../types-hoist/options';
import { SamplingContext } from '../types-hoist/samplingcontext';
/**
* Makes a sampling decision for the given options.
*
* Called every time a root span is created. Only root spans which emerge with a `sampled` value of `true` will be
* sent to Sentry.
*/
export declare function sampleSpan(options: Pick<CoreOptions, 'tracesSampleRate' | 'tracesSampler'>, samplingContext: SamplingContext, sampleRand: number): [
/*sampled*/ boolean,
/*sampleRate*/ number,
/*localSampleRateWasApplied*/ boolean
];
//# sourceMappingURL=sampling.d.ts.map