mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
chore(tslint): fix noImplicitAny errors
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user