UNPKG

670 BSource Map (JSON)View Raw
1{"version":3,"file":"debugMeta.js","sourceRoot":"","sources":["../src/debugMeta.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Holds meta information to customize the behavior of sentry's event processing.\n **/\nexport interface DebugMeta {\n images?: Array<DebugImage>;\n transactionSampling?: { rate?: number; method?: string };\n}\n\n/**\n * Possible choices for debug images.\n */\nexport type DebugImageType = 'wasm' | 'macho' | 'elf' | 'pe';\n\n/**\n * References to debug images.\n */\nexport interface DebugImage {\n type: DebugImageType;\n debug_id: string;\n code_id?: string | null;\n code_file: string;\n debug_file?: string | null;\n}\n"]}
\No newline at end of file