Skip to content

Commit 00bbd9b

Browse files
aparziatscott
authored andcommitted
fix(core): fix docs for output migration (angular#60764)
missing EventEmitter import PR Close angular#60764
1 parent e9a719e commit 00bbd9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adev/src/content/reference/migrations/outputs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ng generate @angular/core:output-migration
2222
**Before**
2323

2424
```typescript
25-
import {Component, Output} from '@angular/core';
25+
import {Component, Output, EventEmitter} from '@angular/core';
2626

2727
@Component({
2828
template: `<button (click)="someMethod('test')">emit</button>`

0 commit comments

Comments
 (0)