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

28 lines
1.2 KiB
Plaintext

import { Event } from './types-hoist/event';
import { StackParser } from './types-hoist/stacktrace';
/**
* Builds a map of filenames to module metadata from the global _sentryModuleMetadata object.
* This is useful for forwarding metadata from web workers to the main thread.
*
* @param parser - Stack parser to use for extracting filenames from stack traces
* @returns A map of filename to metadata object
*/
export declare function getFilenameToMetadataMap(parser: StackParser): Record<string, any>;
/**
* Retrieve metadata for a specific JavaScript file URL.
*
* Metadata is injected by the Sentry bundler plugins using the `_experiments.moduleMetadata` config option.
*/
export declare function getMetadataForUrl(parser: StackParser, filename: string): any | undefined;
/**
* Adds metadata to stack frames.
*
* Metadata is injected by the Sentry bundler plugins using the `_experiments.moduleMetadata` config option.
*/
export declare function addMetadataToStackFrames(parser: StackParser, event: Event): void;
/**
* Strips metadata from stack frames.
*/
export declare function stripMetadataFromStackFrames(event: Event): void;
//# sourceMappingURL=metadata.d.ts.map