我想创建一个虚拟函数以传递到故事书中的构造函数中。
这是我的伪函数的定义
const userActionHandler = (args: {
isAllowed?: boolean,
shouldAddNewItem?: boolean,
}) => void;
但是tsc
对此投诉:
error TS1109: Expression expected.
149 }) => void;
~
Found 1 error.
我想念什么?
答案 0 :(得分:1)
这应该有效:
const userActionHandler = (args: {
isAllowed?: boolean,
shouldAddNewItem?: boolean,
}) => {};