(
locator: ProviderToken<LocatorT> | string,
opts?: {read?: ProviderToken<ReadT>; debugName?: string},
)
| 16 | import {Signal} from '../render3/reactivity/api'; |
| 17 | |
| 18 | function viewChildFn<LocatorT, ReadT>( |
| 19 | locator: ProviderToken<LocatorT> | string, |
| 20 | opts?: {read?: ProviderToken<ReadT>; debugName?: string}, |
| 21 | ): Signal<ReadT | undefined> { |
| 22 | ngDevMode && assertInInjectionContext(viewChild); |
| 23 | return createSingleResultOptionalQuerySignalFn<ReadT>(opts); |
| 24 | } |
| 25 | |
| 26 | function viewChildRequiredFn<LocatorT, ReadT>( |
| 27 | locator: ProviderToken<LocatorT> | string, |
nothing calls this directly
no test coverage detected
searching dependent graphs…