我有以下代码:
const imageLoader: HTMLImageElement = new Image();
这将引发以下Flow错误:
Cannot assign `new Image()` to `imageLoader` because `Image` [1] is incompatible with `HTMLImageElement` [2]. (References: [1] [2])
我在Flow documentation中找不到有关HTMLImageElement
或一般图像的任何信息。但是,我确实在此Flow cheatsheet上找到了HTMLImageElement
。
我看不到我在做什么错。根据{{3}}:
The Image() constructor creates a new HTMLImageElement instance.
这是Flow中的错误还是我做错了什么?