mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
update types
This commit is contained in:
@@ -1383,20 +1383,20 @@ function Polymer_DisableUpgradeMixin(){}
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
Polymer_DisableUpgradeMixin.prototype.attributeChangedCallback = function(name, old, value){};
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
Polymer_DisableUpgradeMixin.prototype._initializeProperties = function(){};
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
Polymer_DisableUpgradeMixin.prototype.connectedCallback = function(){};
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
Polymer_DisableUpgradeMixin.prototype._enableProperties = function(){};
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
Polymer_DisableUpgradeMixin.prototype.attributeChangedCallback = function(name, old, value){};
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
Polymer_DisableUpgradeMixin.prototype.connectedCallback = function(){};
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
Polymer_DisableUpgradeMixin.prototype.disconnectedCallback = function(){};
|
||||
6
types/lib/mixins/disable-upgrade-mixin.d.ts
vendored
6
types/lib/mixins/disable-upgrade-mixin.d.ts
vendored
@@ -8,6 +8,8 @@
|
||||
* lib/mixins/disable-upgrade-mixin.html
|
||||
*/
|
||||
|
||||
/// <reference path="element-mixin.d.ts" />
|
||||
|
||||
declare namespace Polymer {
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user