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>
14 lines
617 B
Text
14 lines
617 B
Text
import { Options } 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<Options, 'tracesSampleRate' | 'tracesSampler'>, samplingContext: SamplingContext, sampleRand: number): [
|
|
/*sampled*/ boolean,
|
|
/*sampleRate*/ number,
|
|
/*localSampleRateWasApplied*/ boolean
|
|
];
|
|
//# sourceMappingURL=sampling.d.ts.map
|