UPDATETypeScript是否支持TouchEvent?
TypeScript 1.5.3 added declarations for HTML Touch events to lib.d.ts
我可以看到它支持的UIEvent,但它似乎并没有对触摸事件的接口。
此代码指示“TouchEvent在当前范围内不存在”。
class Touchy {
private _element:Element;
constructor(theElement:Element) {
this._element = theElement;
theElement.addEventListener("touchstart", (theTouchEvent:TouchEvent) => alert("touchy"));
}
}
我可以使用UIEvent,但不能使用TouchEvent。如何使用TypeScript处理TouchEvent?谢谢。
@norahiko有Github上项目与方法是:https://github.com/norahiko/TouchEvent.d.ts –
这。 :[github.com/borisyankov/DefinitelyTyped/touch-events/touch-events.d.ts](https://github.com/borisyankov/DefinitelyTyped/blob/master/touch-events/touch-events.d.ts ) – harry0000