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