英文:
TypeScript: Correct type when passing an html image as an argument instead of any
问题
我正在使用 any
,但我的代码检查器报错,我正在传递一个图像
const canvasControl = (image: any) => {
console.log(image)
};
控制台输出
<img src="blob:http://localhost:3000/25d85923-afc9-4a57-839c-539bf1a22c60">
英文:
I'm using any
, but my linter is complaining, I'm passing an image
const canvasControl = (image: any) => {
console.log(image)
};
the console log out
<img src="blob:http://localhost:3000/25d85923-afc9-4a57-839c-539bf1a22c60">
答案1
得分: 3
应该将其键入为 HTMLImageElement
。
英文:
You should type it as HTMLImageElement
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论