我正在尝试从我的React组件中的PropTypes
迁移到Flow
类型检查。
请指出PropTypes.func
中Flow
的等价物,以指明道具是一个函数吗?
我的代码如下所示:
import * as React from 'react'
type Props = {
doSomething: /* function */
}
class MyComponent extends React.Component<Props> {}
答案 0 :(得分:7)
您可以使用:
type Props = {
doSomething: () => void,
}
或根据需要指定参数。
答案 1 :(得分:1)
有一个更清晰的方法:
type Props = {
doSomething: Function // with capital letter
}