Merge branch 'master' into legacy-undefined-noBatch

This commit is contained in:
Daniel Freedman
2019-07-30 21:31:16 -07:00
3 changed files with 108 additions and 3 deletions

View File

@@ -158,6 +158,29 @@ Polymer.orderedComputed;
*/
var PolymerElement = function() {};
/**
* The tag name of the cutom element type.
* @type {string|undefined}
*/
PolymerElement.is;
/**
* The template to stamp when creating this element type.
* @type {!HTMLTemplateElement|undefined}
*/
PolymerElement.template;
/**
* The properties of the cutom element type.
* @type {!PolymerElementProperties|undefined}
*/
PolymerElement.properties;
/**
* The observers of this custom element type.
* @type {!Array<string>|undefined}
*/
PolymerElement.observers;
/** @type {!PolymerInit|undefined} */
PolymerElement.generatedFrom;
/**
* On create callback.
* @override