TypeError:使用Flow&React进行类型检查事件时,无法读取未定义错误的属性“ type”

时间:2018-10-18 13:31:14

标签: reactjs babel eslint flowtype

我正在尝试对带有流的type System.Array with member this.Item with get (index : int) = (this :?> 'T[]).[index] and set (index : int) (value : 'T) = (this :?> 'T[]).[index] <- value member this.Item with get(index : bigint) : 'T = (this :?> 'T[]).[int index] and set(index : bigint) (value : 'T) = (this :?> 'T[]).[int index] <- value let untypedArray = myArray :> System.Array let untypedArrayElement = box untypedArray.[0] :?> string let untypedArrayElement2 = box untypedArray.[bigint 0] :?> string 事件进行类型检查,但是handleChange找不到我的事件类型。我在其他一些道具上使用了流程和类型检查,并且可以正常工作。

eslint

0 个答案:

没有答案