Skip to content

Commit

Permalink
Add additional externs (#5575)
Browse files Browse the repository at this point in the history
Upstreaming cl/259031976
  • Loading branch information
rictic committed Jul 20, 2019
1 parent e7e4c24 commit 69ee468
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions externs/polymer-externs.js
Expand Up @@ -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
Expand Down

0 comments on commit 69ee468

Please sign in to comment.