我需要为$ location和$ stateParams服务使用哪些类型

时间:2016-02-22 12:19:20

标签: angularjs typescript

我正在使用TypeScript重写AngularJS(1.5版)应用程序。在注入$location$stateParams服务时,我需要使用哪些类型?

1 个答案:

答案 0 :(得分:2)

  

<强> $位置

//constructor param:
$location: ng.ILocationService
  

<强> $ stateParams

$stateParams特别是any类型,因此您可以更具体地了解您的定义:

//param definition:
type RouteParams = {
  // whatever params are being passed in
}
//constructor param:
$stateParams: RouteParam