Files
klz-cables.com/.pnpm-store/v10/files/80/c9d10cf9bca62360c1e8397a7fd7d842d5c97348552e5a9c212283c51d0d0b4043db37168a3d255a65b7adcc400f6cc9c0b13161deddf6a5837d9453e38371
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

17 lines
777 B
Plaintext

import type { DebugImage } from '../types-hoist/debugMeta';
import type { StackParser } from '../types-hoist/stacktrace';
/**
* Clears the cached debug ID mappings.
* Useful for testing or when the global debug ID state changes.
*/
export declare function clearDebugIdCache(): void;
/**
* Returns a map of filenames to debug identifiers.
* Supports both proprietary _sentryDebugIds and native _debugIds (e.g., from Vercel) formats.
*/
export declare function getFilenameToDebugIdMap(stackParser: StackParser): Record<string, string>;
/**
* Returns a list of debug images for the given resources.
*/
export declare function getDebugImagesForResources(stackParser: StackParser, resource_paths: ReadonlyArray<string>): DebugImage[];
//# sourceMappingURL=debug-ids.d.ts.map