mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
d1f45002d3
Closure Compiler renames all properties that are "internal" to the program. `DOMAnimation` however is external, it is a browser API, so its fields must not be renamed. This change marks `DOMAnimation` as external using `declare interface`, which will cause Closure Compiler to back off and prevent renaming of any of its fields. PR Close #21125