* Invokes a function in a given zone. * * The invocation of `callback` can be intercepted by declaring [ZoneSpec.onInvoke]. * * @param callback The function to invoke. * @param applyThis * @param applyArgs * @param source A unique debug location of the API being invoked. * @r
(callback: Function, applyThis?: any, applyArgs?: any[], source?: string)
| 201 | * @returns {any} Value from the `callback` function. |
| 202 | */ |
| 203 | run<T>(callback: Function, applyThis?: any, applyArgs?: any[], source?: string): T; |
| 204 | |
| 205 | /** |
| 206 | * Invokes a function in a given zone and catches any exceptions. |
no outgoing calls