From b8de53efe8604e1ca3e4c52fd9994df303214e88 Mon Sep 17 00:00:00 2001 From: Dan Bucholtz Date: Sun, 24 Jul 2016 01:38:12 -0500 Subject: [PATCH] eventType is a number, not a string, per the documentation (#10208) --- hammerjs/hammerjs.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hammerjs/hammerjs.d.ts b/hammerjs/hammerjs.d.ts index 6b7cc7fb19..faba777b7a 100644 --- a/hammerjs/hammerjs.d.ts +++ b/hammerjs/hammerjs.d.ts @@ -196,7 +196,7 @@ declare class HammerInput pointerType:string; /** Event type, matches the INPUT constants. */ - eventType:string; + eventType:number; /** true when the first input. */ isFirst:boolean;