Rocky_Mountain_Vending/.pnpm-store/v10/files/a9/f2bcf48c3e068e0e4180c5eabd1c684b93386bb9ccf05e8fa0083506e0c93010a2f6e689243950bdb5fd99294eb14051b8488519e0a908fa53cb0c2f9cfa10
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
No EOL
2.3 KiB
Text

import type { Scope } from '../scope';
import type { getTraceData } from '../utils/traceData';
import type { continueTrace, startInactiveSpan, startSpan, startSpanManual, suppressTracing, withActiveSpan } from './../tracing/trace';
import type { 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