@angular/core 12.2.0 → 12.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/core.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.2.0
2
+ * @license Angular v12.2.4
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1324,7 +1324,8 @@ export declare const ContentChild: ContentChildDecorator;
1324
1324
  */
1325
1325
  export declare interface ContentChildDecorator {
1326
1326
  /**
1327
- * Parameter decorator that configures a content query.
1327
+ * @description
1328
+ * Property decorator that configures a content query.
1328
1329
  *
1329
1330
  * Use to get the first element or the directive matching the selector from the content DOM.
1330
1331
  * If the content DOM changes, and a new child matches the selector,
@@ -1406,7 +1407,8 @@ export declare const ContentChildren: ContentChildrenDecorator;
1406
1407
  */
1407
1408
  export declare interface ContentChildrenDecorator {
1408
1409
  /**
1409
- * Parameter decorator that configures a content query.
1410
+ * @description
1411
+ * Property decorator that configures a content query.
1410
1412
  *
1411
1413
  * Use to get the `QueryList` of elements or directives from the content DOM.
1412
1414
  * Any time a child element is added, removed, or moved, the query list will be
@@ -8761,7 +8763,8 @@ export declare const ViewChildren: ViewChildrenDecorator;
8761
8763
  */
8762
8764
  export declare interface ViewChildrenDecorator {
8763
8765
  /**
8764
- * Parameter decorator that configures a view query.
8766
+ * @description
8767
+ * Property decorator that configures a view query.
8765
8768
  *
8766
8769
  * Use to get the `QueryList` of elements or directives from the view DOM.
8767
8770
  * Any time a child element is added, removed, or moved, the query list will be updated,