We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7e4c24 commit 69ee468Copy full SHA for 69ee468
1 file changed
externs/polymer-externs.js
@@ -143,6 +143,29 @@ Polymer.syncInitialRender;
143
*/
144
var PolymerElement = function() {};
145
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
+
169
/**
170
* On create callback.
171
* @override
0 commit comments