次のコードがあります。
///<reference path="../typescript/jquery.d.ts" />
function addThemePrototypes() {
var templateSetup = new Array();
$.fn.addTemplateSetup = function(func, prioritary)
{
if (prioritary)
{
templateSetup.unshift(func);
}
else
{
templateSetup.push(func);
}
};
}
以下を追加しようとすると:
$('a').addTemplateSetup(
この同じファイルに、インテリセンスがなく、typescript が追加したばかりの addTemplateSetup プロトタイプを認識していないようです。
これは正しい方法ですか、それとも addTemplateSetup の定義などを JQueryStatic 定義ファイルに追加してから含める必要がありますか?