@@ -36,6 +36,10 @@ export namespace Components {
36
36
}
37
37
interface ElementCmp {
38
38
}
39
+ interface EmptyCmp {
40
+ }
41
+ interface EmptyCmpShadow {
42
+ }
39
43
interface EnvData {
40
44
}
41
45
interface EventCmp {
@@ -187,6 +191,18 @@ declare global {
187
191
prototype : HTMLElementCmpElement ;
188
192
new ( ) : HTMLElementCmpElement ;
189
193
} ;
194
+ interface HTMLEmptyCmpElement extends Components . EmptyCmp , HTMLStencilElement {
195
+ }
196
+ var HTMLEmptyCmpElement : {
197
+ prototype : HTMLEmptyCmpElement ;
198
+ new ( ) : HTMLEmptyCmpElement ;
199
+ } ;
200
+ interface HTMLEmptyCmpShadowElement extends Components . EmptyCmpShadow , HTMLStencilElement {
201
+ }
202
+ var HTMLEmptyCmpShadowElement : {
203
+ prototype : HTMLEmptyCmpShadowElement ;
204
+ new ( ) : HTMLEmptyCmpShadowElement ;
205
+ } ;
190
206
interface HTMLEnvDataElement extends Components . EnvData , HTMLStencilElement {
191
207
}
192
208
var HTMLEnvDataElement : {
@@ -284,6 +300,8 @@ declare global {
284
300
"dom-interaction" : HTMLDomInteractionElement ;
285
301
"dom-visible" : HTMLDomVisibleElement ;
286
302
"element-cmp" : HTMLElementCmpElement ;
303
+ "empty-cmp" : HTMLEmptyCmpElement ;
304
+ "empty-cmp-shadow" : HTMLEmptyCmpShadowElement ;
287
305
"env-data" : HTMLEnvDataElement ;
288
306
"event-cmp" : HTMLEventCmpElement ;
289
307
"import-assets" : HTMLImportAssetsElement ;
@@ -328,6 +346,10 @@ declare namespace LocalJSX {
328
346
}
329
347
interface ElementCmp {
330
348
}
349
+ interface EmptyCmp {
350
+ }
351
+ interface EmptyCmpShadow {
352
+ }
331
353
interface EnvData {
332
354
}
333
355
interface EventCmp {
@@ -376,6 +398,8 @@ declare namespace LocalJSX {
376
398
"dom-interaction" : DomInteraction ;
377
399
"dom-visible" : DomVisible ;
378
400
"element-cmp" : ElementCmp ;
401
+ "empty-cmp" : EmptyCmp ;
402
+ "empty-cmp-shadow" : EmptyCmpShadow ;
379
403
"env-data" : EnvData ;
380
404
"event-cmp" : EventCmp ;
381
405
"import-assets" : ImportAssets ;
@@ -408,6 +432,8 @@ declare module "@stencil/core" {
408
432
"dom-interaction" : LocalJSX . DomInteraction & JSXBase . HTMLAttributes < HTMLDomInteractionElement > ;
409
433
"dom-visible" : LocalJSX . DomVisible & JSXBase . HTMLAttributes < HTMLDomVisibleElement > ;
410
434
"element-cmp" : LocalJSX . ElementCmp & JSXBase . HTMLAttributes < HTMLElementCmpElement > ;
435
+ "empty-cmp" : LocalJSX . EmptyCmp & JSXBase . HTMLAttributes < HTMLEmptyCmpElement > ;
436
+ "empty-cmp-shadow" : LocalJSX . EmptyCmpShadow & JSXBase . HTMLAttributes < HTMLEmptyCmpShadowElement > ;
411
437
"env-data" : LocalJSX . EnvData & JSXBase . HTMLAttributes < HTMLEnvDataElement > ;
412
438
"event-cmp" : LocalJSX . EventCmp & JSXBase . HTMLAttributes < HTMLEventCmpElement > ;
413
439
"import-assets" : LocalJSX . ImportAssets & JSXBase . HTMLAttributes < HTMLImportAssetsElement > ;
0 commit comments