Files
klz-cables.com/.pnpm-store/v10/files/58/44b2e623d29dc984f5783fe1cb31537fef6d6199e900e6e16f118ef8175db06dbea4f63ab6021f262d20b54600edd98159fe8f0ca06444e516ff3208852f6e
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
785 B
Plaintext

import { DebugImage } from '../types-hoist/debugMeta';
import { 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