标签: typescript
function callThis(func: () => void) { func(); } callThis(() => { console.log('HI'); return 'Z'; });
我将此粘贴到TypeScript Playground中,没有任何投诉。这不是应该因为我从应该不返回任何内容的函数返回字符串而抛出错误吗?