虚拟函数导致“错误TS1109:预期表达。”

时间:2019-08-02 00:32:17

标签: typescript

我想创建一个虚拟函数以传递到故事书中的构造函数中。

这是我的伪函数的定义

 const userActionHandler = (args: {
    isAllowed?: boolean,
    shouldAddNewItem?: boolean,
  }) => void;

但是tsc对此投诉:

error TS1109: Expression expected.

149   }) => void;
                ~


Found 1 error.

我想念什么?

1 个答案:

答案 0 :(得分:1)

这应该有效:

 const userActionHandler = (args: {
    isAllowed?: boolean,
    shouldAddNewItem?: boolean,
  }) => {};