在将鼠标悬停在ide上时,我看到以下建议-
declare const Given;
import Given
const Given: any
Variable 'Given' implicitly has an 'any' type, but a better type may be inferred from usage.ts(7043)
如果我将其更改为以下内容,则建议/错误消失-
declare const Given: any;
这里的隐式类型是什么,而不是any
?