| 10 | } |
| 11 | |
| 12 | export interface StackTraceOptions { |
| 13 | filter?: (stackFrame: StackFrame) => boolean; |
| 14 | sourceCache?: SourceCache; |
| 15 | offline?: boolean; |
| 16 | } |
| 17 | |
| 18 | export interface StackFrame { |
| 19 | constructor(object: StackFrame): StackFrame; |
nothing calls this directly
no outgoing calls
no test coverage detected