具有“道具”或函数参数类型错误的createAction

时间:2019-09-29 08:06:16

标签: angular typescript webstorm ngrx ngrx-store

我开始重构代码以使用创建动作的新语法。 由于某些原因,当我尝试使用附加的代码创建操作时,IDE(WebStorm)会告诉我此错误:

  

“参数类型与参数不匹配”

知道为什么吗?

我关注了这篇文章:https://medium.com/ngrx/announcing-ngrx-version-8-ngrx-data-create-functions-runtime-checks-and-mock-selectors-a44fac112627

export const someActionCreatedUsingFunction = createAction(
  '[Actions] SOME_ACTION',
  (payload: any) => ({payload})
);

export const someActionCreatedUsingProps = createAction(
  '[Actions] SOME_ACTION',
  props<{payload: any}>()
);

0 个答案:

没有答案