update types

This commit is contained in:
Steven Orvell
2018-02-21 10:28:07 -08:00
parent 59d7f975b0
commit 5bc45ce390
20 changed files with 176 additions and 33 deletions

View File

@@ -1374,4 +1374,30 @@ Polymer_ArraySelectorMixin.prototype.select = function(item){};
* @param {number} idx Index from `items` array to select
* @return {void}
*/
Polymer_ArraySelectorMixin.prototype.selectIndex = function(idx){};
Polymer_ArraySelectorMixin.prototype.selectIndex = function(idx){};
/**
* @interface
*/
function Polymer_DisableUpgradeMixin(){}
/**
* @param {*} name
* @param {*} old
* @param {*} value
*/
Polymer_DisableUpgradeMixin.prototype.attributeChangedCallback = function(name, old, value){};
/**
* @return {undefined}
*/
Polymer_DisableUpgradeMixin.prototype._initializeProperties = function(){};
/**
* @return {undefined}
*/
Polymer_DisableUpgradeMixin.prototype.connectedCallback = function(){};
/**
* @return {undefined}
*/
Polymer_DisableUpgradeMixin.prototype._enableProperties = function(){};
/**
* @return {undefined}
*/
Polymer_DisableUpgradeMixin.prototype.disconnectedCallback = function(){};