google-closure-compiler
Advanced tools
Comparing version 20170124.0.0 to 20170218.0.0
@@ -1805,3 +1805,19 @@ /* | ||
/** | ||
* Augment the angular.$interval type definition by reopening the type via an | ||
* artificial angular.$interval instance. | ||
* | ||
* This allows us to define methods on function objects which is something | ||
* that can't be expressed via typical type annotations. | ||
* | ||
* @type {angular.$interval} | ||
*/ | ||
angular.$interval_; | ||
/** | ||
* @type {function(!angular.$q.Promise):boolean} | ||
*/ | ||
angular.$interval_.cancel = function(promise) {}; | ||
/****************************************************************************** | ||
@@ -2566,3 +2582,19 @@ * $locale Service | ||
/** | ||
* Augment the angular.$timeout type definition by reopening the type via an | ||
* artificial angular.$timeout instance. | ||
* | ||
* This allows us to define methods on function objects which is something | ||
* that can't be expressed via typical type annotations. | ||
* | ||
* @type {angular.$timeout} | ||
*/ | ||
angular.$timeout_; | ||
/** | ||
* @type {function(angular.$q.Promise=):boolean} | ||
*/ | ||
angular.$timeout_.cancel = function(promise) {}; | ||
/****************************************************************************** | ||
@@ -2569,0 +2601,0 @@ * $transclude Service |
@@ -34,3 +34,3 @@ /* | ||
/** @constructor */ | ||
/** @interface */ | ||
md.$bottomSheet = function() {}; | ||
@@ -81,3 +81,3 @@ | ||
/** @constructor */ | ||
/** @interface */ | ||
md.$dialog = function() {}; | ||
@@ -117,4 +117,4 @@ | ||
/** @constructor */ | ||
md.$dialog.AlertConfig_; | ||
/** @interface */ | ||
md.$dialog.AlertConfig_ = function() {}; | ||
@@ -196,4 +196,4 @@ /** | ||
/** @constructor */ | ||
md.$dialog.ConfirmConfig_; | ||
/** @interface */ | ||
md.$dialog.ConfirmConfig_ = function() {}; | ||
@@ -281,4 +281,4 @@ /** | ||
/** @constructor */ | ||
md.$dialog.PromptConfig_; | ||
/** @interface */ | ||
md.$dialog.PromptConfig_ = function() {}; | ||
@@ -583,3 +583,3 @@ /** | ||
/** @constructor */ | ||
/** @interface */ | ||
md.$mdThemingProvider = function() {}; | ||
@@ -624,3 +624,3 @@ | ||
/** @constructor */ | ||
/** @interface */ | ||
md.$mdTheming = function() {}; | ||
@@ -645,3 +645,3 @@ | ||
* @param {string} name | ||
* @constructor | ||
* @interface | ||
*/ | ||
@@ -707,3 +707,3 @@ md.$mdThemingProvider.Theme = function(name) {}; | ||
/** @constructor */ | ||
/** @interface */ | ||
md.$mdIconProvider = function() {}; | ||
@@ -759,3 +759,3 @@ | ||
/** @constructor */ | ||
/** @interface */ | ||
md.$mdMenu = function() {}; | ||
@@ -803,28 +803,28 @@ | ||
/** @constructor */ | ||
/** @interface */ | ||
md.$mdDateLocaleProvider = function() {}; | ||
/** @type {Array<string>} */ | ||
md.$mdDateLocaleProvider.prototype.months = []; | ||
md.$mdDateLocaleProvider.prototype.months; | ||
/** @type {Array<string>} */ | ||
md.$mdDateLocaleProvider.prototype.shortMonths = []; | ||
md.$mdDateLocaleProvider.prototype.shortMonths; | ||
/** @type {Array<string>} */ | ||
md.$mdDateLocaleProvider.prototype.days = []; | ||
md.$mdDateLocaleProvider.prototype.days; | ||
/** @type {Array<string>} */ | ||
md.$mdDateLocaleProvider.prototype.shortDays = []; | ||
md.$mdDateLocaleProvider.prototype.shortDays; | ||
/** @type {number} */ | ||
md.$mdDateLocaleProvider.prototype.firstDayOfWeek = 1; | ||
md.$mdDateLocaleProvider.prototype.firstDayOfWeek; | ||
/** @type {Array<string|number>} */ | ||
md.$mdDateLocaleProvider.prototype.dates = []; | ||
md.$mdDateLocaleProvider.prototype.dates; | ||
/** @type {string} */ | ||
md.$mdDateLocaleProvider.prototype.msgCalendar = ''; | ||
md.$mdDateLocaleProvider.prototype.msgCalendar; | ||
/** @type {string} */ | ||
md.$mdDateLocaleProvider.prototype.msgOpenCalendar = ''; | ||
md.$mdDateLocaleProvider.prototype.msgOpenCalendar; | ||
@@ -854,3 +854,3 @@ // The functions on $mdDateLocaleProvider are defined as fields because | ||
/** @constructor */ | ||
/** @interface */ | ||
md.$mdGestureProvider = function() {}; | ||
@@ -863,3 +863,13 @@ | ||
/****************************************************************************** | ||
* $mdInkRippleProvider | ||
*****************************************************************************/ | ||
/** @interface */ | ||
md.$mdInkRippleProvider = function() {}; | ||
md.$mdInkRippleProvider.prototype.disableInkRipple = function() {}; | ||
/****************************************************************************** | ||
@@ -869,3 +879,3 @@ * VirtualRepeatContainerController | ||
/** @constructor */ | ||
/** @interface */ | ||
md.VirtualRepeatContainerController = function() {}; | ||
@@ -899,3 +909,3 @@ | ||
/** @constructor */ | ||
/** @interface */ | ||
md.VirtualRepeatController = function() {}; | ||
@@ -1028,3 +1038,3 @@ | ||
* @param {!angular.$injector} $injector | ||
* @constructor | ||
* @interface | ||
*/ | ||
@@ -1115,3 +1125,3 @@ md.$panel.MdPanelRef = function(config, $injector) {}; | ||
* @param {!angular.$window} $window | ||
* @constructor | ||
* @interface | ||
*/ | ||
@@ -1184,3 +1194,3 @@ md.$panel.MdPanelPosition = function($window) {}; | ||
* @param {!angular.$injector} $injector | ||
* @constructor | ||
* @interface | ||
*/ | ||
@@ -1187,0 +1197,0 @@ md.$panel.MdPanelAnimation = function($injector) {}; |
@@ -603,3 +603,2 @@ /* | ||
/** | ||
@@ -820,3 +819,13 @@ * @param {string} name | ||
/****************************************************************************** | ||
* $mdInkRippleProvider | ||
*****************************************************************************/ | ||
/** @interface */ | ||
md.$mdInkRippleProvider = function() {}; | ||
md.$mdInkRippleProvider.prototype.disableInkRipple = function() {}; | ||
/****************************************************************************** | ||
@@ -823,0 +832,0 @@ * VirtualRepeatContainerController |
@@ -310,3 +310,10 @@ /* | ||
/** | ||
* @param {Object} object | ||
* @param {*} object | ||
* @param {function(new: Object)} constructor | ||
* @param {string=} opt_message | ||
*/ | ||
assert.instanceOf = function(object, constructor, opt_message) {}; | ||
/** | ||
* @param {?Object|undefined} object | ||
* @param {string} property | ||
@@ -317,1 +324,9 @@ * @param {*} value | ||
assert.propertyVal = function(object, property, value, opt_message) {}; | ||
/** | ||
* @param {function()} fn | ||
* @param {function(new: Object)|string|!RegExp} constructor | ||
* @param {string|!RegExp=} opt_regexp | ||
* @param {string=} opt_message | ||
*/ | ||
assert.throws = function(fn, constructor, opt_regexp, opt_message) {}; |
@@ -450,2 +450,9 @@ /* | ||
/** | ||
* @param {string} description | ||
* @param {function(this:jasmine.Spec, function())} handler | ||
*/ | ||
function pending(description, handler) {} | ||
/** | ||
* @param {Object} spiedOnObject | ||
@@ -452,0 +459,0 @@ * @param {string} methodName |
{ | ||
"name": "google-closure-compiler", | ||
"version": "20170124.0.0", | ||
"version": "20170218.0.0", | ||
"description": "Check, compile, optimize and compress Javascript with Closure-Compiler", | ||
@@ -5,0 +5,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12078736
192600