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
17 lines
777 B
Plaintext
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 |