Files
klz-cables.com/.pnpm-store/v10/files/71/24cf5d0420ed9e5177bebbf57cfcb71da95d4b69fe60081ca408b1ad8fb703fab557137efa07952d54a603cd884eeb8041bcbbbd038cfe6d16cc3909da312f
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

18 lines
753 B
Plaintext

import { Context, TracerProvider } from '@opentelemetry/api';
import type { EngineSpan, ExtendedSpanOptions, SpanCallback, TracingHelper } from '@prisma/instrumentation-contract';
type Options = {
tracerProvider: TracerProvider;
ignoreSpanTypes: (string | RegExp)[];
};
export declare class ActiveTracingHelper implements TracingHelper {
private tracerProvider;
private ignoreSpanTypes;
constructor({ 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 {};