Skip to content

Commit

Permalink
fix(types): 修复ITouchEvent里的changedTouches属性的类型错误 (#8808)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryougifujino authored Mar 4, 2021
1 parent eaacb70 commit f96a70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/taro-components/types/common.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export interface ITouchEvent<T = any> extends BaseEventOrig<T> {
touches: Array<ITouch>

/** 触摸事件,当前变化的触摸点信息的数组 */
changedTouches: Array<CanvasTouch>
changedTouches: Array<ITouch>
}

export interface CanvasTouch {
Expand Down

0 comments on commit f96a70a

Please sign in to comment.