Files
klz-cables.com/.pnpm-store/v10/files/b7/9bd9c8637ad054db1ac5ee66a441dec4fe318bd99be1ac18966b08c0be219a7467f3d62f5538468375e33c18d2027cf9328561212c62296fb091ff152c0b1d
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
717 B
Plaintext

import type { Scope } from '../scope';
import type { Span } from '../types-hoist/span';
declare const SCOPE_SPAN_FIELD = "_sentrySpan";
type ScopeWithMaybeSpan = Scope & {
[SCOPE_SPAN_FIELD]?: Span;
};
/**
* Set the active span for a given scope.
* NOTE: This should NOT be used directly, but is only used internally by the trace methods.
*/
export declare function _setSpanForScope(scope: Scope, span: Span | undefined): void;
/**
* Get the active span for a given scope.
* NOTE: This should NOT be used directly, but is only used internally by the trace methods.
*/
export declare function _getSpanForScope(scope: ScopeWithMaybeSpan): Span | undefined;
export {};
//# sourceMappingURL=spanOnScope.d.ts.map