(
locator: ProviderToken<LocatorT> | string,
opts?: {
read?: ProviderToken<ReadT>;
debugName?: string;
},
)
| 153 | * @see [Required queries](guide/components/queries#required-queries) |
| 154 | */ |
| 155 | export function viewChildren<LocatorT, ReadT>( |
| 156 | locator: ProviderToken<LocatorT> | string, |
| 157 | opts?: { |
| 158 | read?: ProviderToken<ReadT>; |
| 159 | debugName?: string; |
| 160 | }, |
| 161 | ): Signal<ReadonlyArray<ReadT>> { |
| 162 | ngDevMode && assertInInjectionContext(viewChildren); |
| 163 | return createMultiResultQuerySignalFn<ReadT>(opts); |
| 164 | } |
| 165 | |
| 166 | export function contentChildFn<LocatorT, ReadT>( |
| 167 | locator: ProviderToken<LocatorT> | string, |
no test coverage detected
searching dependent graphs…