我到处搜寻,但似乎找不到答案,希望可以为您提供帮助。如何在图像中添加枚举?这是我理想的状态,但出现错误。
declare module 'Lib' {
export module Graphics {
export class Image {
enum State {}
static STATE_IDLE: State;
static STATE_LOADING: State;
static STATE_READY: State;
static STATE_ERROR: State;
constructor();
}
}
}
如果我将State移到Graphics模块,则可以工作,但是State属于Graphics ...这是不正确的,它必须是Image的一部分。
有任何想法吗?谢谢
export default
,可以export
从中删除关键字class
并在的右括号后面namespace
添加一行。export default Image;
namespace