chore(tslint): fix noImplicitAny errors

This commit is contained in:
Adam Bradley
2016-05-31 18:40:29 -05:00
parent f14e2dc04b
commit 03f4511635
21 changed files with 92 additions and 93 deletions

View File

@ -92,15 +92,15 @@ export class TextInput extends InputBase {
/**
* @private
*/
inputBlurred(event) {
this.blur.emit(event);
inputBlurred(ev: UIEvent) {
this.blur.emit(ev);
}
/**
* @private
*/
inputFocused(event) {
this.focus.emit(event);
inputFocused(ev: UIEvent) {
this.focus.emit(ev);
}
/**
@ -193,14 +193,14 @@ export class TextArea extends InputBase {
/**
* @private
*/
inputBlurred(event) {
this.blur.emit(event);
inputBlurred(ev: UIEvent) {
this.blur.emit(ev);
}
/**
* @private
*/
inputFocused(event) {
this.focus.emit(event);
inputFocused(ev: UIEvent) {
this.focus.emit(ev);
}
}