我有以下代码:
///<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);
}
};
}
有人能告诉我为什么应该用 => void 声明它吗?
interface JQuery {
addTemplateSetup: (func: Function, priority: bool) =>void;
}
我想我对如何从 javascript 函数执行 returntype 有点困惑。有时我看到:jQuery,现在我看到 => void。两者有什么区别?