Rocky_Mountain_Vending/.pnpm-store/v10/files/35/3a8970a3fd9bb0b625e2863a7981c67e6a17e2dcd60c601a7d915f59b7c31d5d1835ffb5fc954beb1316ba01f275437f715ed124d0f90732c49229a271c241
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

23 lines
No EOL
997 B
Text

import type { Context } from '@opentelemetry/api';
import type { Scope } from '@sentry/core';
import type { CurrentScopes } from '../types';
/**
* Try to get the current scopes from the given OTEL context.
* This requires a Context Manager that was wrapped with getWrappedContextManager.
*/
export declare function getScopesFromContext(context: Context): CurrentScopes | undefined;
/**
* Set the current scopes on an OTEL context.
* This will return a forked context with the Propagation Context set.
*/
export declare function setScopesOnContext(context: Context, scopes: CurrentScopes): Context;
/**
* Set the context on the scope so we can later look it up.
* We need this to get the context from the scope in the `trace` functions.
*/
export declare function setContextOnScope(scope: Scope, context: Context): void;
/**
* Get the context related to a scope.
*/
export declare function getContextFromScope(scope: Scope): Context | undefined;
//# sourceMappingURL=contextData.d.ts.map