Files
klz-cables.com/.pnpm-store/v10/files/2a/ff79b82b1a23f48c592407818270f0fcaec2fc9f8da70dca505f1283643e55d92707f5516ab8e2678bf20a318e60dbf2b86b7261de17331e547b594be031b5
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

24 lines
1006 B
Plaintext

import { Context } from '@opentelemetry/api';
import { Scope } from '@sentry/core';
import { CurrentScopes } from '../types';
/**
* Try to get the current scopes from the given OTEL context.
* This requires a Context Manager that was wrapped with getWrappedContextManager.
*/
export declare function getScopesFromContext(context: Context): CurrentScopes | undefined;
/**
* Set the current scopes on an OTEL context.
* This will return a forked context with the Propagation Context set.
*/
export declare function setScopesOnContext(context: Context, scopes: CurrentScopes): Context;
/**
* Set the context on the scope so we can later look it up.
* We need this to get the context from the scope in the `trace` functions.
*/
export declare function setContextOnScope(scope: Scope, context: Context): void;
/**
* Get the context related to a scope.
*/
export declare function getContextFromScope(scope: Scope): Context | undefined;
//# sourceMappingURL=contextData.d.ts.map