Event.js を使用してスワイプをキャプチャしています https://github.com/mudcube/Event.jsを試してみるとdeclare var Event: any;
、Event.add(test, "swipe", function() {}, { snap: 45 });
次のエラーが発生します。
Error 1 The property 'add' does not exist on value of type '{ prototype: Event; CAPTURING_PHASE: number; AT_TARGET: number; BUBBLING_PHASE: number; new(): Event; }'
私が試してみると:
declare interface Event {
add: any;
};
私は得るDuplicate identifier 'add'
プロパティをオーバーライドしないのはなぜですか?