@angular/core 10.1.4 → 10.2.1

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 v10.1.4
2
+ * @license Angular v10.2.1
3
3
  * (c) 2010-2020 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -506,7 +506,7 @@ declare interface BootstrapOptions {
506
506
  * coalesced and the change detection will be triggered multiple times.
507
507
  * And if this option be set to true, the change detection will be
508
508
  * triggered async by scheduling a animation frame. So in the case above,
509
- * the change detection will only be trigged once.
509
+ * the change detection will only be triggered once.
510
510
  */
511
511
  ngZoneEventCoalescing?: boolean;
512
512
  }
@@ -3476,8 +3476,11 @@ declare interface InstructionState {
3476
3476
  * In this mode, any changes in bindings will throw an ExpressionChangedAfterChecked error.
3477
3477
  *
3478
3478
  * Necessary to support ChangeDetectorRef.checkNoChanges().
3479
+ *
3480
+ * checkNoChanges Runs only in devmode=true and verifies that no unintended changes exist in
3481
+ * the change detector or its children.
3479
3482
  */
3480
- checkNoChangesMode: boolean;
3483
+ isInCheckNoChangesMode: boolean;
3481
3484
  }
3482
3485
 
3483
3486
  declare interface InternalNgModuleRef<T> extends NgModuleRef<T> {