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

@ -4,7 +4,7 @@ import {NG_VALUE_ACCESSOR} from '@angular/common';
import {Form} from '../../util/form';
import {isTrueProperty, isNumber, isString, isPresent, clamp} from '../../util/util';
import {Item} from '../item/item';
import {pointerCoord} from '../../util/dom';
import {pointerCoord, Coordinates} from '../../util/dom';
const RANGE_VALUE_ACCESSOR = new Provider(
@ -633,7 +633,7 @@ export class Range {
/**
* @private
*/
registerOnTouched(fn) { this.onTouched = fn; }
registerOnTouched(fn: any) { this.onTouched = fn; }
/**
* @input {boolean} Whether or not the range is disabled. Defaults to `false`.
@ -702,8 +702,3 @@ export interface ClientRect {
xOffset?: number;
yOffset?: number;
}
export interface Coordinates {
x?: number;
y?: number;
}