mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
16fe27bfef
The following: `@Output() someChange = new EventEmitter<void>();` is correctly migrated to: `readonly someChange = output<void>();` However, a TODO is incorrectly inserted for subsequent emissions from `someChange`, stating that an argument is expected.