Rocky_Mountain_Vending/.pnpm-store/v10/files/95/87bbf97ea3b13cc12f48f87b52d5bba545bfc91ec0b9f0bdc0159890b769a110d0682e37798e898c5b682a88bcac7cdc57846a858e1ffee31578723ec7d83a
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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