Files
klz-cables.com/.pnpm-store/v10/files/b1/69914503c149ff526c45b1247e8cdb814bf9193ebe8c13fd3ccad49d8a95229bcf9f6131244c73c03eeb9ec1e4732b2b3a603cdd9db848aca8c86748887475
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
691 B
Plaintext

import { ClientOptions } from '../types-hoist/options';
import { SpanJSON } from '../types-hoist/span';
/**
* Check if a span should be ignored based on the ignoreSpans configuration.
*/
export declare function shouldIgnoreSpan(span: Pick<SpanJSON, 'description' | 'op'>, ignoreSpans: Required<ClientOptions>['ignoreSpans']): boolean;
/**
* Takes a list of spans, and a span that was dropped, and re-parents the child spans of the dropped span to the parent of the dropped span, if possible.
* This mutates the spans array in place!
*/
export declare function reparentChildSpans(spans: SpanJSON[], dropSpan: SpanJSON): void;
//# sourceMappingURL=should-ignore-span.d.ts.map