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>
10 lines
No EOL
591 B
Text
10 lines
No EOL
591 B
Text
import type { Options } from '../types-hoist/options';
|
|
import type { 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 |