Fix typescript error
This commit is contained in:
parent
43e032299c
commit
057a2a6f05
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ export class TypeaheadDirective implements AfterContentInit {
|
||||||
@Output('taEntered') entered = new EventEmitter<any>();
|
@Output('taEntered') entered = new EventEmitter<any>();
|
||||||
|
|
||||||
private itemSelected: boolean = false;
|
private itemSelected: boolean = false;
|
||||||
private existingTimer: Promise = null;
|
private existingTimer: ng.IPromise<void> = null;
|
||||||
|
|
||||||
constructor(@Inject('$element') private $element: ng.IAugmentedJQuery,
|
constructor(@Inject('$element') private $element: ng.IAugmentedJQuery,
|
||||||
@Inject('$compile') private $compile: ng.ICompileService,
|
@Inject('$compile') private $compile: ng.ICompileService,
|
||||||
|
|
Reference in a new issue