Rocky_Mountain_Vending/.pnpm-store/v10/files/0f/c507803eb0afe60d6df1a215051c00ab788e9d2c589e62f1df1f89c2b5ab49bc40d9e2e395610dbf1683f92ca41cee1d776a8810f6d1b814ebbf1590ce7579
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

56 lines
2.3 KiB
Text

import { Scope } from '../scope';
import { getTraceData } from '../utils/traceData';
import { continueTrace, startInactiveSpan, startSpan, startSpanManual, suppressTracing, withActiveSpan } from './../tracing/trace';
import { getActiveSpan } from './../utils/spanUtils';
/**
* @private Private API with no semver guarantees!
*
* Strategy used to track async context.
*/
export interface AsyncContextStrategy {
/**
* Fork the isolation scope inside of the provided callback.
*/
withIsolationScope: <T>(callback: (isolationScope: Scope) => T) => T;
/**
* Fork the current scope inside of the provided callback.
*/
withScope: <T>(callback: (isolationScope: Scope) => T) => T;
/**
* Set the provided scope as the current scope inside of the provided callback.
*/
withSetScope: <T>(scope: Scope, callback: (scope: Scope) => T) => T;
/**
* Set the provided isolation as the current isolation scope inside of the provided callback.
*/
withSetIsolationScope: <T>(isolationScope: Scope, callback: (isolationScope: Scope) => T) => T;
/**
* Get the currently active scope.
*/
getCurrentScope: () => Scope;
/**
* Get the currently active isolation scope.
*/
getIsolationScope: () => Scope;
/** Start an active span. */
startSpan?: typeof startSpan;
/** Start an inactive span. */
startInactiveSpan?: typeof startInactiveSpan;
/** Start an active manual span. */
startSpanManual?: typeof startSpanManual;
/** Get the currently active span. */
getActiveSpan?: typeof getActiveSpan;
/** Make a span the active span in the context of the callback. */
withActiveSpan?: typeof withActiveSpan;
/** Suppress tracing in the given callback, ensuring no spans are generated inside of it. */
suppressTracing?: typeof suppressTracing;
/** Get trace data as serialized string values for propagation via `sentry-trace` and `baggage`. */
getTraceData?: typeof getTraceData;
/**
* Continue a trace from `sentry-trace` and `baggage` values.
* These values can be obtained from incoming request headers, or in the browser from `<meta name="sentry-trace">`
* and `<meta name="baggage">` HTML tags.
*/
continueTrace?: typeof continueTrace;
}
//# sourceMappingURL=types.d.ts.map