chore(tslint): fix noImplicitAny errors

This commit is contained in:
Adam Bradley
2016-05-31 21:07:17 -05:00
parent fc819dd9c4
commit 11448dcd0c
49 changed files with 284 additions and 353 deletions

View File

@ -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;
}