admin管理员组文章数量:1341464
I have a class MYMODULE.Image{}, but I want to instantiate an object of type HTMLImageElement. When I call new Image()
, TypeScript thinks I want to instantiate MYMODULE.Image, even when I use
image: HTMLImageElement = new Image();
Can I somehow explicitly call the global Image class? I tried
image: HTMLImageElement = new Window.Image();
but to no avail.
A scope resolution operator like C++'s ::Image
would be handy. Perhaps it's there and I just don't see it.
Thank you
I have a class MYMODULE.Image{}, but I want to instantiate an object of type HTMLImageElement. When I call new Image()
, TypeScript thinks I want to instantiate MYMODULE.Image, even when I use
image: HTMLImageElement = new Image();
Can I somehow explicitly call the global Image class? I tried
image: HTMLImageElement = new Window.Image();
but to no avail.
A scope resolution operator like C++'s ::Image
would be handy. Perhaps it's there and I just don't see it.
Thank you
Share edited Aug 8, 2014 at 13:41 user37057 asked Aug 8, 2014 at 12:47 user37057user37057 691 gold badge1 silver badge5 bronze badges2 Answers
Reset to default 7Creating a HTMLImage element can be done like this.
document.createElement("img");
According to the Mozilla documentation it is the same: https://developer.mozilla/en-US/docs/Web/API/HTMLImageElement.Image
Edit:
If you want to use the Image constructor you might need to create a new interface like below:
interface Window {
Image: {
prototype: HTMLImageElement;
new (): HTMLImageElement;
};
}
var a = new window.Image()
You can do that with a clever use of typeof
:
declare var imageType:typeof Image; // Create a alias so you can refer to the type
interface Window{
// Use the `typeof alias` because `Image` would be confused in the context
Image: typeof imageType;
}
Complete sample:
declare var imageType:typeof Image;
interface Window{
Image: typeof imageType;
}
module Foo{
class Image{}
var image: HTMLImageElement = new window.Image();
}
本文标签: javascriptTypeScriptnew Image() from global scopeStack Overflow
版权声明:本文标题:javascript - TypeScript -- new Image() from global scope - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743674594a2520099.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论