在Typescript 0.9中的ExportAssignment

时间:2013-04-28 10:56:16

标签: typescript

0.9规范提到这是该模块的一部分:

ExportAssignment: export = Identifier ;

但是我无法编译:

export class Test{
    foo:number = 10; 
}

export = Test;

使用--module amd选项进行编译。它给出了错误:

tsc.js(689, 13) Microsoft JScript runtime error: please implement in derived class

希望我做错了一些简单的事情?

1 个答案:

答案 0 :(得分:2)

0.9 Alpha预览版中没有实现此功能。