我已经定义了这种类型:
export type RemoveFromWishlistFailureAction = {
type: types.REMOVE_FROM_WISHLIST_FAILURE,
error: Error
};
在其他地方我有此代码:
const removeFailure: RemoveFromWishlistFailureAction = {
type: types.REMOVE_FROM_WISHLIST_FAILURE
};
我期望会有一个Flow错误,因为该对象缺少error
属性。没有错误。
我的代码或我的理解中是否存在错误?还是其他地方?