File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,29 @@ Polymer.syncInitialRender;
143
143
*/
144
144
var PolymerElement = function ( ) { } ;
145
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
+
146
169
/**
147
170
* On create callback.
148
171
* @override
You can’t perform that action at this time.
0 commit comments