File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -762,7 +762,9 @@ angular.Module.requires;
762
762
* $parent: angular.Scope,
763
763
* $root: angular.Scope,
764
764
* $watch: function(
765
- * (string|Function), (string|Function)=, boolean=):function()
765
+ * (string|Function), (string|Function)=, boolean=):function(),
766
+ * $watchCollection: function(
767
+ * (string|Function), (string|Function)=):function()
766
768
* }}
767
769
*/
768
770
angular . Scope ;
@@ -834,6 +836,13 @@ angular.Scope.$root;
834
836
*/
835
837
angular . Scope . $watch = function ( exp , opt_listener , opt_objectEquality ) { } ;
836
838
839
+ /**
840
+ * @param {string|Function } exp
841
+ * @param {(string|Function)= } opt_listener
842
+ * @return {function() }
843
+ */
844
+ angular . Scope . $watchCollection = function ( exp , opt_listener ) { } ;
845
+
837
846
/**
838
847
* @typedef {{
839
848
* currentScope: angular.Scope,
You can’t perform that action at this time.
0 commit comments