Skip to content

Commit

Permalink
update types
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Feb 21, 2018
1 parent a37ba7e commit 2d674e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions externs/closure-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -1383,19 +1383,19 @@ function Polymer_DisableUpgradeMixin(){}
/**
* @override
*/
Polymer_DisableUpgradeMixin.prototype.attributeChangedCallback = function(name, old, value){};
Polymer_DisableUpgradeMixin.prototype._initializeProperties = function(){};
/**
* @override
*/
Polymer_DisableUpgradeMixin.prototype._initializeProperties = function(){};
Polymer_DisableUpgradeMixin.prototype._enableProperties = function(){};
/**
* @override
*/
Polymer_DisableUpgradeMixin.prototype.connectedCallback = function(){};
Polymer_DisableUpgradeMixin.prototype.attributeChangedCallback = function(name, old, value){};
/**
* @override
*/
Polymer_DisableUpgradeMixin.prototype._enableProperties = function(){};
Polymer_DisableUpgradeMixin.prototype.connectedCallback = function(){};
/**
* @override
*/
Expand Down
6 changes: 4 additions & 2 deletions types/lib/mixins/disable-upgrade-mixin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
* lib/mixins/disable-upgrade-mixin.html
*/

/// <reference path="element-mixin.d.ts" />

declare namespace Polymer {


Expand Down Expand Up @@ -38,10 +40,10 @@ declare namespace Polymer {
}

interface DisableUpgradeMixin {
attributeChangedCallback(name: any, old: any, value: any): void;
_initializeProperties(): void;
connectedCallback(): void;
_enableProperties(): void;
attributeChangedCallback(name: any, old: any, value: any): void;
connectedCallback(): void;
disconnectedCallback(): void;
}
}

0 comments on commit 2d674e7

Please sign in to comment.