Skip to content

Commit

Permalink
fix(component): Remove duplicate Output()
Browse files Browse the repository at this point in the history
  • Loading branch information
rene-leanix committed Jul 3, 2018
1 parent 42e04c5 commit 1e69685
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/handsontable.component.ts
Expand Up @@ -153,8 +153,7 @@ export class HotTableComponent implements OnInit, OnDestroy, OnChanges {
@Output() public skipLengthCache = new EventEmitter();
@Output() public unmodifyCol = new EventEmitter();
@Output() public unmodifyRow = new EventEmitter();
@Output() public hotInstanceCreated = new EventEmitter();


@Output() public hotInstanceCreated = new EventEmitter<Handsontable>();

private inst: Handsontable;
Expand Down

0 comments on commit 1e69685

Please sign in to comment.