TypeScript:将HTML图像作为参数传递而不是任何类型时,正确的类型

huangapple go评论81阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2020年1月3日 23:38:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/59581334.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定