只需要修复这个错误。如果它有助于这个应用程序使用 AngularJS。TypeScript 版本为 0.9.0.0
/path/app/scripts/Application.ts(22,13):
错误 TS2081:提供的参数与调用目标的任何签名都不匹配。
/path/app/scripts/Application.ts(22,13):
错误 TS2087:无法为“调用”表达式选择重载。
应用程序.ts
import controllers = module("scripts/Controllers");
var app = angular.module('myApp', ['ngResource', 'templates-main']);
app.controller(controllers.data);
22,13 点app.controller(controllers.data);
模块“脚本/控制器”
export var data = {
"MainCtrl": ($scope) => {
$scope.login = ()=> {
console.log('do something');
}
}
};