Files
klz-cables.com/.pnpm-store/v10/files/6c/7c047d7e4fbd07e7d4e1b51a08876e6e94e8c7e6ec0160193b38f89a13f53e08ba692ecbfabdfa7ed4934a1677379d67d9f0df90a330458a288bbc97e34e0d
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

10 lines
616 B
Plaintext

import { CoreOptions as Options } from '../types-hoist/options';
import { LRUMap } from './lru';
/**
* Check if a given URL should be propagated to or not.
* If no url is defined, or no trace propagation targets are defined, this will always return `true`.
* You can also optionally provide a decision map, to cache decisions and avoid repeated regex lookups.
*/
export declare function shouldPropagateTraceForUrl(url: string | undefined, tracePropagationTargets: Options['tracePropagationTargets'], decisionMap?: LRUMap<string, boolean>): boolean;
//# sourceMappingURL=tracePropagationTargets.d.ts.map