Fixes noImplicitAny Error

This commit is contained in:
aersamkull
2015-10-13 13:32:01 +02:00
parent 4e7d893a8e
commit 988de07c17
@@ -16,7 +16,7 @@ namespace {{package}} {
static $inject: string[] = ['$http', '$httpParamSerializer'];
constructor(private $http: ng.IHttpService, basePath?: string, private $httpParamSerializer?: (any) => any) {
constructor(private $http: ng.IHttpService, basePath?: string, private $httpParamSerializer?: (d: any) => any) {
if (basePath) {
this.basePath = basePath;
}