@@ -104,6 +104,8 @@ export namespace Components {
104
104
}
105
105
interface NestedCmpParent {
106
106
}
107
+ interface NestedScopeCmp {
108
+ }
107
109
interface PathAliasCmp {
108
110
}
109
111
interface PrerenderCmp {
@@ -350,6 +352,12 @@ declare global {
350
352
prototype : HTMLNestedCmpParentElement ;
351
353
new ( ) : HTMLNestedCmpParentElement ;
352
354
} ;
355
+ interface HTMLNestedScopeCmpElement extends Components . NestedScopeCmp , HTMLStencilElement {
356
+ }
357
+ var HTMLNestedScopeCmpElement : {
358
+ prototype : HTMLNestedScopeCmpElement ;
359
+ new ( ) : HTMLNestedScopeCmpElement ;
360
+ } ;
353
361
interface HTMLPathAliasCmpElement extends Components . PathAliasCmp , HTMLStencilElement {
354
362
}
355
363
var HTMLPathAliasCmpElement : {
@@ -445,6 +453,7 @@ declare global {
445
453
"method-cmp" : HTMLMethodCmpElement ;
446
454
"nested-cmp-child" : HTMLNestedCmpChildElement ;
447
455
"nested-cmp-parent" : HTMLNestedCmpParentElement ;
456
+ "nested-scope-cmp" : HTMLNestedScopeCmpElement ;
448
457
"path-alias-cmp" : HTMLPathAliasCmpElement ;
449
458
"prerender-cmp" : HTMLPrerenderCmpElement ;
450
459
"prop-cmp" : HTMLPropCmpElement ;
@@ -529,6 +538,8 @@ declare namespace LocalJSX {
529
538
}
530
539
interface NestedCmpParent {
531
540
}
541
+ interface NestedScopeCmp {
542
+ }
532
543
interface PathAliasCmp {
533
544
}
534
545
interface PrerenderCmp {
@@ -588,6 +599,7 @@ declare namespace LocalJSX {
588
599
"method-cmp" : MethodCmp ;
589
600
"nested-cmp-child" : NestedCmpChild ;
590
601
"nested-cmp-parent" : NestedCmpParent ;
602
+ "nested-scope-cmp" : NestedScopeCmp ;
591
603
"path-alias-cmp" : PathAliasCmp ;
592
604
"prerender-cmp" : PrerenderCmp ;
593
605
"prop-cmp" : PropCmp ;
@@ -635,6 +647,7 @@ declare module "@stencil/core" {
635
647
"method-cmp" : LocalJSX . MethodCmp & JSXBase . HTMLAttributes < HTMLMethodCmpElement > ;
636
648
"nested-cmp-child" : LocalJSX . NestedCmpChild & JSXBase . HTMLAttributes < HTMLNestedCmpChildElement > ;
637
649
"nested-cmp-parent" : LocalJSX . NestedCmpParent & JSXBase . HTMLAttributes < HTMLNestedCmpParentElement > ;
650
+ "nested-scope-cmp" : LocalJSX . NestedScopeCmp & JSXBase . HTMLAttributes < HTMLNestedScopeCmpElement > ;
638
651
"path-alias-cmp" : LocalJSX . PathAliasCmp & JSXBase . HTMLAttributes < HTMLPathAliasCmpElement > ;
639
652
"prerender-cmp" : LocalJSX . PrerenderCmp & JSXBase . HTMLAttributes < HTMLPrerenderCmpElement > ;
640
653
"prop-cmp" : LocalJSX . PropCmp & JSXBase . HTMLAttributes < HTMLPropCmpElement > ;
0 commit comments