Merge pull request #8071 from damianog/patch-1

Missing "require" property on IComponentOptions
This commit is contained in:
Mohamed Hegazy
2016-06-26 16:53:04 -07:00
committed by GitHub
+4
View File
@@ -1707,6 +1707,10 @@ declare namespace angular {
* Use the array form to define dependencies (necessary if strictDi is enabled and you require dependency injection)
*/
templateUrl?: string | Function | (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.