| 6 | declare namespace StackTrace { |
| 7 | |
| 8 | export interface SourceCache { |
| 9 | [key: string]: string | Promise<string>; |
| 10 | } |
| 11 | |
| 12 | export interface StackTraceOptions { |
| 13 | filter?: (stackFrame: StackFrame) => boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected