Files
klz-cables.com/.pnpm-store/v10/files/ef/0c1eefbe70bf3afebc253969c01505aec14d1aa298708bdc30883ff73f876868b0996247a1d55bed15c2c62c6ac5ae8fc78d4eaf6e2d38771038ae4c54dcef
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

13 lines
649 B
Plaintext

import type { Scope } from '../scope';
import type { Span } from '../types-hoist/span';
/** Store the scope & isolation scope for a span, which can the be used when it is finished. */
export declare function setCapturedScopesOnSpan(span: Span | undefined, scope: Scope, isolationScope: Scope): void;
/**
* Grabs the scope and isolation scope off a span that were active when the span was started.
* If WeakRef was used and scopes have been garbage collected, returns undefined for those scopes.
*/
export declare function getCapturedScopesOnSpan(span: Span): {
scope?: Scope;
isolationScope?: Scope;
};
//# sourceMappingURL=utils.d.ts.map