@@ -43,6 +43,8 @@ export namespace Components {
43
43
}
44
44
interface PathAliasCmp {
45
45
}
46
+ interface PrerenderCmp {
47
+ }
46
48
interface PropCmp {
47
49
"first" : string ;
48
50
"lastName" : string ;
@@ -140,6 +142,12 @@ declare global {
140
142
prototype : HTMLPathAliasCmpElement ;
141
143
new ( ) : HTMLPathAliasCmpElement ;
142
144
} ;
145
+ interface HTMLPrerenderCmpElement extends Components . PrerenderCmp , HTMLStencilElement {
146
+ }
147
+ var HTMLPrerenderCmpElement : {
148
+ prototype : HTMLPrerenderCmpElement ;
149
+ new ( ) : HTMLPrerenderCmpElement ;
150
+ } ;
143
151
interface HTMLPropCmpElement extends Components . PropCmp , HTMLStencilElement {
144
152
}
145
153
var HTMLPropCmpElement : {
@@ -184,6 +192,7 @@ declare global {
184
192
"listen-cmp" : HTMLListenCmpElement ;
185
193
"method-cmp" : HTMLMethodCmpElement ;
186
194
"path-alias-cmp" : HTMLPathAliasCmpElement ;
195
+ "prerender-cmp" : HTMLPrerenderCmpElement ;
187
196
"prop-cmp" : HTMLPropCmpElement ;
188
197
"slot-cmp" : HTMLSlotCmpElement ;
189
198
"slot-cmp-container" : HTMLSlotCmpContainerElement ;
@@ -227,6 +236,8 @@ declare namespace LocalJSX {
227
236
}
228
237
interface PathAliasCmp {
229
238
}
239
+ interface PrerenderCmp {
240
+ }
230
241
interface PropCmp {
231
242
"first" ?: string ;
232
243
"lastName" ?: string ;
@@ -258,6 +269,7 @@ declare namespace LocalJSX {
258
269
"listen-cmp" : ListenCmp ;
259
270
"method-cmp" : MethodCmp ;
260
271
"path-alias-cmp" : PathAliasCmp ;
272
+ "prerender-cmp" : PrerenderCmp ;
261
273
"prop-cmp" : PropCmp ;
262
274
"slot-cmp" : SlotCmp ;
263
275
"slot-cmp-container" : SlotCmpContainer ;
@@ -282,6 +294,7 @@ declare module "@stencil/core" {
282
294
"listen-cmp" : LocalJSX . ListenCmp & JSXBase . HTMLAttributes < HTMLListenCmpElement > ;
283
295
"method-cmp" : LocalJSX . MethodCmp & JSXBase . HTMLAttributes < HTMLMethodCmpElement > ;
284
296
"path-alias-cmp" : LocalJSX . PathAliasCmp & JSXBase . HTMLAttributes < HTMLPathAliasCmpElement > ;
297
+ "prerender-cmp" : LocalJSX . PrerenderCmp & JSXBase . HTMLAttributes < HTMLPrerenderCmpElement > ;
285
298
"prop-cmp" : LocalJSX . PropCmp & JSXBase . HTMLAttributes < HTMLPropCmpElement > ;
286
299
"slot-cmp" : LocalJSX . SlotCmp & JSXBase . HTMLAttributes < HTMLSlotCmpElement > ;
287
300
"slot-cmp-container" : LocalJSX . SlotCmpContainer & JSXBase . HTMLAttributes < HTMLSlotCmpContainerElement > ;
0 commit comments