流型图像

时间:2018-07-17 14:18:04

标签: javascript reactjs flowtype

我有以下代码:

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中的错误还是我做错了什么?

0 个答案:

没有答案