标签: typescript
以下分配不会出错:
const foo: (time: number) => void = () => {};
...但是如果说:
const foo: (time: number) => void = (x: string) => {};
对此我感到很惊讶-如果我不传递/分配确切的功能,我希望并期望TS出错。