diff options
Diffstat (limited to 'closure')
| -rw-r--r-- | closure/angular.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/closure/angular.js b/closure/angular.js index 0103c555..09e31723 100644 --- a/closure/angular.js +++ b/closure/angular.js @@ -226,6 +226,11 @@ angular.uppercase = function(s) {}; angular.Attributes; /** + * @type {Object.<string, string>} + */ +angular.Attributes.$attr; + +/** * @param {string} name * @return {string} */ @@ -1578,6 +1583,7 @@ angular.$q.when = function(value) {}; * @typedef {{ * resolve: function(*=), * reject: function(*=), + * notify: function(*=), * promise: angular.$q.Promise * }} */ @@ -1589,6 +1595,9 @@ angular.$q.Deferred.resolve = function(opt_value) {}; /** @param {*=} opt_reason */ angular.$q.Deferred.reject = function(opt_reason) {}; +/** @param {*=} opt_value */ +angular.$q.Deferred.notify = function(opt_value) {}; + /** @type {angular.$q.Promise} */ angular.$q.Deferred.promise; |
