mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
Merge branch 'master' into legacy-undefined-noBatch
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user