1

我怎么能在打字稿中说如下内容:

interface X{
    value:number
}
var bar:X[] = []; // Not an error 

// declare a type to be the same: 
interface Y extends Array<X>{
}
var foo:Y = []; // Error 
4

1 回答 1

0

我确信这是当前(0.9.0.1)版本的编译器中的一个错误:https ://typescript.codeplex.com/workitem/1355

试试看

于 2013-07-16T03:51:32.840 回答