eventType is a number, not a string, per the documentation (#10208)

This commit is contained in:
Dan Bucholtz
2016-07-24 01:38:12 -05:00
committed by Mohamed Hegazy
parent 61e0188683
commit b8de53efe8

View File

@@ -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;