From 824761509fb46114aa55036829452941f135a543 Mon Sep 17 00:00:00 2001 From: Damiano Date: Fri, 12 Feb 2016 23:27:38 +0100 Subject: [PATCH] Missing "require" property on IComponentOptions Added missing require property on IComponentOptions --- angularjs/angular.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index 67b3eb488d..59645137d7 100644 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -1706,6 +1706,10 @@ declare module angular { * $attrs - Current attributes object for the element */ templateUrl?: string | Function; + /** + * Define object mapping to other directive or component required controllers. + */ + require?: any; /** * Define DOM attribute binding to component properties. Component properties are always bound to the component * controller and not to the scope.