From 75e813a5d8afa7ed6a4e2df6d2fcbd8c3325858a Mon Sep 17 00:00:00 2001 From: "Ciuca, Alexandru" Date: Wed, 5 Aug 2015 10:57:40 +0300 Subject: [PATCH] angular.d.ts - Reverted controller definition in IDirective to any. --- angularjs/angular.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index fb34759de7..4893cd0b3c 100644 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -1604,7 +1604,7 @@ declare module angular { interface IDirective { compile?: IDirectiveCompileFn; - controller?: {}; + controller?: any; controllerAs?: string; bindToController?: boolean|Object; link?: IDirectiveLinkFn | IDirectivePrePost;