File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -225,6 +225,11 @@ angular.uppercase = function(s) {};
225
225
*/
226
226
angular . Attributes ;
227
227
228
+ /**
229
+ * @type {Object.<string, string> }
230
+ */
231
+ angular . Attributes . $attr ;
232
+
228
233
/**
229
234
* @param {string } name
230
235
* @return {string }
@@ -1578,6 +1583,7 @@ angular.$q.when = function(value) {};
1578
1583
* @typedef {{
1579
1584
* resolve: function(*=),
1580
1585
* reject: function(*=),
1586
+ * notify: function(*=),
1581
1587
* promise: angular.$q.Promise
1582
1588
* }}
1583
1589
*/
@@ -1589,6 +1595,9 @@ angular.$q.Deferred.resolve = function(opt_value) {};
1589
1595
/** @param {*= } opt_reason */
1590
1596
angular . $q . Deferred . reject = function ( opt_reason ) { } ;
1591
1597
1598
+ /** @param {*= } opt_value */
1599
+ angular . $q . Deferred . notify = function ( opt_value ) { } ;
1600
+
1592
1601
/** @type {angular.$q.Promise } */
1593
1602
angular . $q . Deferred . promise ;
1594
1603
You can’t perform that action at this time.
0 commit comments