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
29 lines
725 B
Plaintext
29 lines
725 B
Plaintext
/**
|
|
* Holds meta information to customize the behavior of Sentry's server-side event processing.
|
|
**/
|
|
export interface DebugMeta {
|
|
images?: Array<DebugImage>;
|
|
}
|
|
export type DebugImage = WasmDebugImage | SourceMapDebugImage | MachoDebugImage;
|
|
interface WasmDebugImage {
|
|
type: 'wasm';
|
|
debug_id: string;
|
|
code_id?: string | null;
|
|
code_file: string;
|
|
debug_file?: string | null;
|
|
}
|
|
interface SourceMapDebugImage {
|
|
type: 'sourcemap';
|
|
code_file: string;
|
|
debug_id: string;
|
|
}
|
|
interface MachoDebugImage {
|
|
type: 'macho';
|
|
debug_id: string;
|
|
image_addr: string;
|
|
image_size?: number;
|
|
code_file?: string;
|
|
}
|
|
export {};
|
|
//# sourceMappingURL=debugMeta.d.ts.map
|