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

@ -102,7 +102,7 @@ export class Checkbox {
* @private
*/
@HostListener('click', ['$event'])
private _click(ev) {
private _click(ev: UIEvent) {
console.debug('checkbox, checked');
ev.preventDefault();
ev.stopPropagation();
@ -158,7 +158,7 @@ export class Checkbox {
/**
* @private
*/
registerOnTouched(fn) { this.onTouched = fn; }
registerOnTouched(fn: any) { this.onTouched = fn; }
/**
* @input {boolean} whether or not the checkbox is disabled or not.