@@ -100,6 +100,10 @@ export namespace Components {
100
100
"someMethodWithArgs" : ( unit : string , value : number ) => Promise < string > ;
101
101
"someProp" : number ;
102
102
}
103
+ interface NestedCmpChild {
104
+ }
105
+ interface NestedCmpParent {
106
+ }
103
107
interface PathAliasCmp {
104
108
}
105
109
interface PrerenderCmp {
@@ -334,6 +338,18 @@ declare global {
334
338
prototype : HTMLMethodCmpElement ;
335
339
new ( ) : HTMLMethodCmpElement ;
336
340
} ;
341
+ interface HTMLNestedCmpChildElement extends Components . NestedCmpChild , HTMLStencilElement {
342
+ }
343
+ var HTMLNestedCmpChildElement : {
344
+ prototype : HTMLNestedCmpChildElement ;
345
+ new ( ) : HTMLNestedCmpChildElement ;
346
+ } ;
347
+ interface HTMLNestedCmpParentElement extends Components . NestedCmpParent , HTMLStencilElement {
348
+ }
349
+ var HTMLNestedCmpParentElement : {
350
+ prototype : HTMLNestedCmpParentElement ;
351
+ new ( ) : HTMLNestedCmpParentElement ;
352
+ } ;
337
353
interface HTMLPathAliasCmpElement extends Components . PathAliasCmp , HTMLStencilElement {
338
354
}
339
355
var HTMLPathAliasCmpElement : {
@@ -427,6 +443,8 @@ declare global {
427
443
"import-assets" : HTMLImportAssetsElement ;
428
444
"listen-cmp" : HTMLListenCmpElement ;
429
445
"method-cmp" : HTMLMethodCmpElement ;
446
+ "nested-cmp-child" : HTMLNestedCmpChildElement ;
447
+ "nested-cmp-parent" : HTMLNestedCmpParentElement ;
430
448
"path-alias-cmp" : HTMLPathAliasCmpElement ;
431
449
"prerender-cmp" : HTMLPrerenderCmpElement ;
432
450
"prop-cmp" : HTMLPropCmpElement ;
@@ -507,6 +525,10 @@ declare namespace LocalJSX {
507
525
interface MethodCmp {
508
526
"someProp" ?: number ;
509
527
}
528
+ interface NestedCmpChild {
529
+ }
530
+ interface NestedCmpParent {
531
+ }
510
532
interface PathAliasCmp {
511
533
}
512
534
interface PrerenderCmp {
@@ -564,6 +586,8 @@ declare namespace LocalJSX {
564
586
"import-assets" : ImportAssets ;
565
587
"listen-cmp" : ListenCmp ;
566
588
"method-cmp" : MethodCmp ;
589
+ "nested-cmp-child" : NestedCmpChild ;
590
+ "nested-cmp-parent" : NestedCmpParent ;
567
591
"path-alias-cmp" : PathAliasCmp ;
568
592
"prerender-cmp" : PrerenderCmp ;
569
593
"prop-cmp" : PropCmp ;
@@ -609,6 +633,8 @@ declare module "@stencil/core" {
609
633
"import-assets" : LocalJSX . ImportAssets & JSXBase . HTMLAttributes < HTMLImportAssetsElement > ;
610
634
"listen-cmp" : LocalJSX . ListenCmp & JSXBase . HTMLAttributes < HTMLListenCmpElement > ;
611
635
"method-cmp" : LocalJSX . MethodCmp & JSXBase . HTMLAttributes < HTMLMethodCmpElement > ;
636
+ "nested-cmp-child" : LocalJSX . NestedCmpChild & JSXBase . HTMLAttributes < HTMLNestedCmpChildElement > ;
637
+ "nested-cmp-parent" : LocalJSX . NestedCmpParent & JSXBase . HTMLAttributes < HTMLNestedCmpParentElement > ;
612
638
"path-alias-cmp" : LocalJSX . PathAliasCmp & JSXBase . HTMLAttributes < HTMLPathAliasCmpElement > ;
613
639
"prerender-cmp" : LocalJSX . PrerenderCmp & JSXBase . HTMLAttributes < HTMLPrerenderCmpElement > ;
614
640
"prop-cmp" : LocalJSX . PropCmp & JSXBase . HTMLAttributes < HTMLPropCmpElement > ;
0 commit comments