Rocky_Mountain_Vending/.pnpm-store/v10/files/10/ccefad336950d050ac0dd4a5fcc5e8463dd00df88833af2bcd78f807c5c34be281c41c342e462d907c5d9d15a47633a60f049eccc3cc5adaa14753b026c220
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

18 lines
726 B
Text

import { Scope } from '../scope';
import { Span } from '../types-hoist/span';
declare const SCOPE_SPAN_FIELD = "_sentrySpan";
type ScopeWithMaybeSpan = Scope & {
[SCOPE_SPAN_FIELD]?: Span;
};
/**
* Set the active span for a given scope.
* NOTE: This should NOT be used directly, but is only used internally by the trace methods.
*/
export declare function _setSpanForScope(scope: Scope, span: Span | undefined): void;
/**
* Get the active span for a given scope.
* NOTE: This should NOT be used directly, but is only used internally by the trace methods.
*/
export declare function _getSpanForScope(scope: ScopeWithMaybeSpan): Span | undefined;
export {};
//# sourceMappingURL=spanOnScope.d.ts.map