Add additional externs (#5575)

Upstreaming cl/259031976
This commit is contained in:
Peter Burns
2019-07-19 18:13:36 -07:00
committed by GitHub
parent e7e4c241a7
commit 69ee4688af

View File

@@ -143,6 +143,29 @@ Polymer.syncInitialRender;
*/
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