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

@@ -78,7 +78,7 @@ export class Scroll extends Ion {
* @returns {?Function} a function to remove the specified handler, otherwise
* undefined if the scroll element doesn't exist.
*/
addScrollEventListener(handler) {
addScrollEventListener(handler: any) {
if (!this.scrollElement) { return; }
this.scrollElement.addEventListener('scroll', handler);