@@ -150,6 +150,7 @@ export interface ContentChildrenDecorator {
150150 *
151151 * {@example core/di/ts/contentChildren/content_children_example.ts region='Component'}
152152 *
153+ * @Annotation
153154 */
154155 ( selector : ProviderToken < unknown > | Function | string , opts ?: {
155156 descendants ?: boolean ,
@@ -164,6 +165,7 @@ export interface ContentChildrenDecorator {
164165 * Type of the ContentChildren metadata.
165166 *
166167 *
168+ * @Annotation
167169 * @publicApi
168170 */
169171export type ContentChildren = Query ;
@@ -172,6 +174,7 @@ export type ContentChildren = Query;
172174 * ContentChildren decorator and metadata.
173175 *
174176 *
177+ * @Annotation
175178 * @publicApi
176179 */
177180export const ContentChildren : ContentChildrenDecorator = makePropDecorator (
@@ -239,6 +242,7 @@ export interface ContentChildDecorator {
239242 *
240243 * {@example core/di/ts/contentChild/content_child_example.ts region='Component' }
241244 *
245+ * @Annotation
242246 */
243247 ( selector : ProviderToken < unknown > | Function | string ,
244248 opts ?: { descendants ?: boolean , read ?: any , static ?: boolean } ) : any ;
@@ -257,7 +261,7 @@ export type ContentChild = Query;
257261 * ContentChild decorator and metadata.
258262 *
259263 *
260-
264+ * @Annotation
261265 *
262266 * @publicApi
263267 */
@@ -324,6 +328,7 @@ export interface ViewChildrenDecorator {
324328 *
325329 * {@example core/di/ts/viewChildren/view_children_example.ts region='Component' }
326330 *
331+ * @Annotation
327332 */
328333 ( selector : ProviderToken < unknown > | Function | string ,
329334 opts ?: { read ?: any , emitDistinctChangesOnly ?: boolean } ) : any ;
@@ -341,7 +346,7 @@ export type ViewChildren = Query;
341346/**
342347 * ViewChildren decorator and metadata.
343348 *
344-
349+ * @Annotation
345350 * @publicApi
346351 */
347352export const ViewChildren : ViewChildrenDecorator = makePropDecorator (
@@ -405,6 +410,7 @@ export interface ViewChildDecorator {
405410 *
406411 * {@example core/di/ts/viewChild/view_child_howto.ts region='HowTo'}
407412 *
413+ * @Annotation
408414 */
409415 ( selector : ProviderToken < unknown > | Function | string , opts ?: { read ?: any , static ?: boolean } ) : any ;
410416 new ( selector : ProviderToken < unknown > | Function | string ,
@@ -421,7 +427,7 @@ export type ViewChild = Query;
421427/**
422428 * ViewChild decorator and metadata.
423429 *
424-
430+ * @Annotation
425431 * @publicApi
426432 */
427433export const ViewChild : ViewChildDecorator = makePropDecorator (
0 commit comments