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>
19 lines
809 B
Text
19 lines
809 B
Text
import { Context, TracerProvider } from '@opentelemetry/api';
|
|
import { EngineSpan, ExtendedSpanOptions, SpanCallback, TracingHelper } from '@prisma/internals';
|
|
type Options = {
|
|
traceMiddleware: boolean;
|
|
tracerProvider: TracerProvider;
|
|
ignoreSpanTypes: (string | RegExp)[];
|
|
};
|
|
export declare class ActiveTracingHelper implements TracingHelper {
|
|
private traceMiddleware;
|
|
private tracerProvider;
|
|
private ignoreSpanTypes;
|
|
constructor({ traceMiddleware, tracerProvider, ignoreSpanTypes }: Options);
|
|
isEnabled(): boolean;
|
|
getTraceParent(context?: Context | undefined): string;
|
|
dispatchEngineSpans(spans: EngineSpan[]): void;
|
|
getActiveContext(): Context | undefined;
|
|
runInChildSpan<R>(options: string | ExtendedSpanOptions, callback: SpanCallback<R>): R;
|
|
}
|
|
export {};
|