* Extend the Error with additional fields for rewritten stack frames
| 55 | * Extend the Error with additional fields for rewritten stack frames |
| 56 | */ |
| 57 | interface Error { |
| 58 | /** |
| 59 | * Stack trace where extra frames have been removed and zone names added. |
| 60 | */ |
| 61 | zoneAwareStack?: string; |
| 62 | |
| 63 | /** |
| 64 | * Original stack trace with no modifications |
| 65 | */ |
| 66 | originalStack?: string; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | export function loadZone(): ZoneType { |
no outgoing calls
no test coverage detected