Rocky_Mountain_Vending/.pnpm-store/v10/files/1d/13a05e88ae359c2583e7e66c4c3cac1e07598dd2e1edca7de50e617271275a81263ec553fc82b36c8282c7425fceb7e05f2c44f3d1ae3bc780f8a14b3e9cab
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

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