Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 525 Bytes

typescript-3.2.md

File metadata and controls

17 lines (9 loc) · 525 Bytes

TypeScript 3.2

lib.d.ts 更新

wheelDelta 和它的小伙伴们被移除了。

wheelDeltaXwheelDeltawheelDeltaZ 全都被移除了,因为他们在 WheelEvents 上是废弃的属性。

解决办法:使用 deltaXdeltaYdeltaZ 代替。

更具体的类型

根据 DOM 规范的描述,某些参数现在接受更具体的类型,不再接受 null

参考