(
locator: ProviderToken<LocatorT> | string,
opts?: {read?: ProviderToken<ReadT>; debugName?: string},
)
| 24 | } |
| 25 | |
| 26 | function viewChildRequiredFn<LocatorT, ReadT>( |
| 27 | locator: ProviderToken<LocatorT> | string, |
| 28 | opts?: {read?: ProviderToken<ReadT>; debugName?: string}, |
| 29 | ): Signal<ReadT> { |
| 30 | ngDevMode && assertInInjectionContext(viewChild); |
| 31 | return createSingleResultRequiredQuerySignalFn<ReadT>(opts); |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Type of the `viewChild` function. The viewChild function creates a singular view query. |
nothing calls this directly
no test coverage detected
searching dependent graphs…