Rocky_Mountain_Vending/.pnpm-store/v10/files/21/7787808ae3025799c611aceb9483a925bcc7ab07a4b0d5e38b2f58e016aacfe511b1c8b3356003c97cfc868c606f3dacb9f22bb369093f48ea25dd090a29c8
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

25 lines
1.4 KiB
Text

import { Options } from '../types-hoist/options';
/**
* Determines if span recording is currently enabled.
*
* Spans are recorded when at least one of `tracesSampleRate` and `tracesSampler`
* is defined in the SDK config. This function does not make any assumption about
* sampling decisions, it only checks if the SDK is configured to record spans.
*
* Important: This function only determines if span recording is enabled. Trace
* continuation and propagation is separately controlled and not covered by this function.
* If this function returns `false`, traces can still be propagated (which is what
* we refer to by "Tracing without Performance")
* @see https://develop.sentry.dev/sdk/telemetry/traces/tracing-without-performance/
*
* @param maybeOptions An SDK options object to be passed to this function.
* If this option is not provided, the function will use the current client's options.
*/
export declare function hasSpansEnabled(maybeOptions?: Pick<Options, 'tracesSampleRate' | 'tracesSampler'> | undefined): boolean;
/**
* @see JSDoc of `hasSpansEnabled`
* @deprecated Use `hasSpansEnabled` instead, which is a more accurately named version of this function.
* This function will be removed in the next major version of the SDK.
*/
export declare const hasTracingEnabled: typeof hasSpansEnabled;
//# sourceMappingURL=hasSpansEnabled.d.ts.map