import type {crusherDowntimeRecord} from "./downtime/types";
type Props = {
data: Array<crusherDowntimeRecord>,
};
type State = {
rows: Props.data,
};
在Props.data
上引发流量:
错误:(30,15)无法获取Props.data,因为在Props [1]中缺少属性数据。
怎么了?
答案 0 :(得分:1)
您无法通过ParseExits
访问data
,因为它是Props
,而不是type
。
对于解决方案,请使用 flow javascript object
:
$PropertyType