IdentifyTypedは、インターフェイスを定義するアンダースコア宣言ファイルを提供し、List
それをコードで頻繁に使用しています。
// Common interface between Arrays and jQuery objects
interface List {
[index: number]: any;
length: number;
}
interface UnderscoreStatic {
sortBy(list: List, iterator?: any, context?: any): any;
groupBy(list: List, iterator: any): any;
countBy(list: List, iterator: any): any;
}
私はcountBy
関数を使用しようとしています:
// <reference path="../DefinitelyTyped/underscore/underscore.d.ts" />
declare var _: UnderscoreStatic;
_.countBy([1,2,3], function(item) {
return item%2;
});
ファイルをコンパイルすると、エラーがスローされます。
> tsc commons.ts
> E:/commons.ts(5,0): Supplied parameters do not match any signature of call target:
Could not apply type 'List' to argument 1, which is of type 'number[]'
number[]
インターフェイスに適合しているため、このエラーが発生した理由はわかりませんList
。
どこが間違っていて、それを修正する方法は?