(ref: ComponentRef<T>)
| 28 | * @publicApi |
| 29 | */ |
| 30 | export function enableDebugTools<T>(ref: ComponentRef<T>): ComponentRef<T> { |
| 31 | exportNgVar(PROFILER_GLOBAL_NAME, new AngularProfiler(ref)); |
| 32 | return ref; |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Disables Angular tools. |
no test coverage detected
searching dependent graphs…