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>
12 lines
689 B
Text
12 lines
689 B
Text
import { Client } from '@sentry/core';
|
|
import { OpenTelemetryClient as OpenTelemetryClientInterface } from '../types';
|
|
/**
|
|
* Wrap an Client class with things we need for OpenTelemetry support.
|
|
* Make sure that the Client class passed in is non-abstract!
|
|
*
|
|
* Usage:
|
|
* const OpenTelemetryClient = getWrappedClientClass(NodeClient);
|
|
* const client = new OpenTelemetryClient(options);
|
|
*/
|
|
export declare function wrapClientClass<ClassConstructor extends new (...args: any[]) => Client, WrappedClassConstructor extends new (...args: any[]) => Client & OpenTelemetryClientInterface>(ClientClass: ClassConstructor): WrappedClassConstructor;
|
|
//# sourceMappingURL=client.d.ts.map
|