mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
chore(tslint): fix noImplicitAny errors
This commit is contained in:
@ -14,7 +14,7 @@ import {isPresent, isTrueProperty} from '../../util/util';
|
||||
})
|
||||
export class Option {
|
||||
private _checked: any = false;
|
||||
private _value;
|
||||
private _value: any;
|
||||
|
||||
/**
|
||||
* @input {any} Event to evaluate when option is selected
|
||||
@ -46,7 +46,7 @@ export class Option {
|
||||
return this.text;
|
||||
}
|
||||
|
||||
set value(val) {
|
||||
set value(val: any) {
|
||||
this._value = val;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user