🔎 搜索词
TS2322
类型 () => void 不能分配给类型 Function
🕗 版本与回归信息
- 这是一个崩溃
- 在版本5.2.2之间发生了变化
⏯ Playground链接
- 无响应*
💻 代码
// TS2322: Type () => void is not assignable to type Function
let c: Function = () => {};
console.log(c);
🙁 实际行为
// TS2322:类型 () => void 不能分配给类型 Function
🙂 预期行为
无ts错误
1条答案
按热度按时间92vpleto1#
工作正常:
https://www.typescriptlang.org/play?#code/DYUwLgBAxgXBBiBXAdlMBLA9siBeCAFAJR4B8EA3gL4DcAsAFBTYDOmoAdMJgOYFREaQA
(顺便说一下,这就是为什么有Playground的原因——这样你就可以和别人分享示例了)