Rocky_Mountain_Vending/.pnpm-store/v10/files/57/50124afb8bc54abfc8df7d5ceadb68484c76c6c81a3e2f4cf32fb3bfb758a8124ac754dd8ebe7ea0596dfa8ee36686c66d3d5a0b7d94d7b549368d9b1b3182
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

11 lines
No EOL
666 B
Text

import type { ContextManager } from '@opentelemetry/api';
/**
* Wrap an OpenTelemetry ContextManager in a way that ensures the context is kept in sync with the Sentry Scope.
*
* Usage:
* import { AsyncLocalStorageContextManager } from '@opentelemetry/context-async-hooks';
* const SentryContextManager = wrapContextManagerClass(AsyncLocalStorageContextManager);
* const contextManager = new SentryContextManager();
*/
export declare function wrapContextManagerClass<ContextManagerInstance extends ContextManager>(ContextManagerClass: new (...args: unknown[]) => ContextManagerInstance): typeof ContextManagerClass;
//# sourceMappingURL=contextManager.d.ts.map