@@ -150,7 +150,6 @@ export interface ContentChildrenDecorator {
150150 *
151151 * {@example core/di/ts/contentChildren/content_children_example.ts region='Component'}
152152 *
153- * @Annotation
154153 */
155154 ( selector : ProviderToken < unknown > | Function | string , opts ?: {
156155 descendants ?: boolean ,
@@ -165,7 +164,6 @@ export interface ContentChildrenDecorator {
165164 * Type of the ContentChildren metadata.
166165 *
167166 *
168- * @Annotation
169167 * @publicApi
170168 */
171169export type ContentChildren = Query ;
@@ -174,7 +172,6 @@ export type ContentChildren = Query;
174172 * ContentChildren decorator and metadata.
175173 *
176174 *
177- * @Annotation
178175 * @publicApi
179176 */
180177export const ContentChildren : ContentChildrenDecorator = makePropDecorator (
@@ -242,7 +239,6 @@ export interface ContentChildDecorator {
242239 *
243240 * {@example core/di/ts/contentChild/content_child_example.ts region='Component' }
244241 *
245- * @Annotation
246242 */
247243 ( selector : ProviderToken < unknown > | Function | string ,
248244 opts ?: { descendants ?: boolean , read ?: any , static ?: boolean } ) : any ;
@@ -261,7 +257,7 @@ export type ContentChild = Query;
261257 * ContentChild decorator and metadata.
262258 *
263259 *
264- * @Annotation
260+
265261 *
266262 * @publicApi
267263 */
@@ -328,7 +324,6 @@ export interface ViewChildrenDecorator {
328324 *
329325 * {@example core/di/ts/viewChildren/view_children_example.ts region='Component' }
330326 *
331- * @Annotation
332327 */
333328 ( selector : ProviderToken < unknown > | Function | string ,
334329 opts ?: { read ?: any , emitDistinctChangesOnly ?: boolean } ) : any ;
@@ -346,7 +341,7 @@ export type ViewChildren = Query;
346341/**
347342 * ViewChildren decorator and metadata.
348343 *
349- * @Annotation
344+
350345 * @publicApi
351346 */
352347export const ViewChildren : ViewChildrenDecorator = makePropDecorator (
@@ -410,7 +405,6 @@ export interface ViewChildDecorator {
410405 *
411406 * {@example core/di/ts/viewChild/view_child_howto.ts region='HowTo'}
412407 *
413- * @Annotation
414408 */
415409 ( selector : ProviderToken < unknown > | Function | string , opts ?: { read ?: any , static ?: boolean } ) : any ;
416410 new ( selector : ProviderToken < unknown > | Function | string ,
@@ -427,7 +421,7 @@ export type ViewChild = Query;
427421/**
428422 * ViewChild decorator and metadata.
429423 *
430- * @Annotation
424+
431425 * @publicApi
432426 */
433427export const ViewChild : ViewChildDecorator = makePropDecorator (
0 commit comments