无法在Flow中报告类型错误

时间:2019-07-18 21:23:18

标签: flowtype

我已经定义了这种类型:

export type RemoveFromWishlistFailureAction = {
  type: types.REMOVE_FROM_WISHLIST_FAILURE,
  error: Error
};

在其他地方我有此代码:

const removeFailure: RemoveFromWishlistFailureAction = {
  type: types.REMOVE_FROM_WISHLIST_FAILURE
};

我期望会有一个Flow错误,因为该对象缺少error属性。没有错误。

我的代码或我的理解中是否存在错误?还是其他地方?

0 个答案:

没有答案