refactor(core): avoid deep links into @angular/core (#49823)

This commit updates the code to avoid deep links into the `@angular/core`, which triggers a build issue in apps when a code is referenced.

PR Close #49823
This commit is contained in:
Andrew Kushnir 2023-04-12 16:10:24 -07:00 committed by Jessica Janiuk
parent 54f18c832d
commit 7fd0b678f3

View file

@ -7,9 +7,9 @@
*/
import {assertInInjectionContext, computed, DestroyRef, inject, signal, Signal, WritableSignal} from '@angular/core';
import {RuntimeError, RuntimeErrorCode} from '@angular/core/src/errors';
import {Observable} from 'rxjs';
import {RuntimeError, RuntimeErrorCode} from '../../src/errors';
import {untracked} from '../../src/signals';
/**