Skip to content

Commit 69ee468

Browse files
authored
Add additional externs (#5575)
Upstreaming cl/259031976
1 parent e7e4c24 commit 69ee468

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

externs/polymer-externs.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,29 @@ Polymer.syncInitialRender;
143143
*/
144144
var PolymerElement = function() {};
145145

146+
/**
147+
* The tag name of the cutom element type.
148+
* @type {string|undefined}
149+
*/
150+
PolymerElement.is;
151+
/**
152+
* The template to stamp when creating this element type.
153+
* @type {!HTMLTemplateElement|undefined}
154+
*/
155+
PolymerElement.template;
156+
/**
157+
* The properties of the cutom element type.
158+
* @type {!PolymerElementProperties|undefined}
159+
*/
160+
PolymerElement.properties;
161+
/**
162+
* The observers of this custom element type.
163+
* @type {!Array<string>|undefined}
164+
*/
165+
PolymerElement.observers;
166+
/** @type {!PolymerInit|undefined} */
167+
PolymerElement.generatedFrom;
168+
146169
/**
147170
* On create callback.
148171
* @override

0 commit comments

Comments
 (0)