| 43 | } |
| 44 | |
| 45 | interface ParsedStackTrace { |
| 46 | errorType: string | null; |
| 47 | errorMessage: string; |
| 48 | frames: StackFrame[]; |
| 49 | raw: string; |
| 50 | } |
| 51 | |
| 52 | interface StackTraceContextValue { |
| 53 | trace: ParsedStackTrace; |
nothing calls this directly
no outgoing calls
no test coverage detected