@@ -150,6 +150,12 @@ export namespace Components {
150
150
interface InputBasicRoot {
151
151
"value" ?: string ;
152
152
}
153
+ interface IonChild {
154
+ }
155
+ interface IonHost {
156
+ }
157
+ interface IonParent {
158
+ }
153
159
interface JsonBasic {
154
160
}
155
161
interface KeyReorder {
@@ -730,6 +736,24 @@ declare global {
730
736
prototype : HTMLInputBasicRootElement ;
731
737
new ( ) : HTMLInputBasicRootElement ;
732
738
} ;
739
+ interface HTMLIonChildElement extends Components . IonChild , HTMLStencilElement {
740
+ }
741
+ var HTMLIonChildElement : {
742
+ prototype : HTMLIonChildElement ;
743
+ new ( ) : HTMLIonChildElement ;
744
+ } ;
745
+ interface HTMLIonHostElement extends Components . IonHost , HTMLStencilElement {
746
+ }
747
+ var HTMLIonHostElement : {
748
+ prototype : HTMLIonHostElement ;
749
+ new ( ) : HTMLIonHostElement ;
750
+ } ;
751
+ interface HTMLIonParentElement extends Components . IonParent , HTMLStencilElement {
752
+ }
753
+ var HTMLIonParentElement : {
754
+ prototype : HTMLIonParentElement ;
755
+ new ( ) : HTMLIonParentElement ;
756
+ } ;
733
757
interface HTMLJsonBasicElement extends Components . JsonBasic , HTMLStencilElement {
734
758
}
735
759
var HTMLJsonBasicElement : {
@@ -1364,6 +1388,9 @@ declare global {
1364
1388
"image-import" : HTMLImageImportElement ;
1365
1389
"init-css-root" : HTMLInitCssRootElement ;
1366
1390
"input-basic-root" : HTMLInputBasicRootElement ;
1391
+ "ion-child" : HTMLIonChildElement ;
1392
+ "ion-host" : HTMLIonHostElement ;
1393
+ "ion-parent" : HTMLIonParentElement ;
1367
1394
"json-basic" : HTMLJsonBasicElement ;
1368
1395
"key-reorder" : HTMLKeyReorderElement ;
1369
1396
"key-reorder-root" : HTMLKeyReorderRootElement ;
@@ -1594,6 +1621,12 @@ declare namespace LocalJSX {
1594
1621
interface InputBasicRoot {
1595
1622
"value" ?: string ;
1596
1623
}
1624
+ interface IonChild {
1625
+ }
1626
+ interface IonHost {
1627
+ }
1628
+ interface IonParent {
1629
+ }
1597
1630
interface JsonBasic {
1598
1631
}
1599
1632
interface KeyReorder {
@@ -1865,6 +1898,9 @@ declare namespace LocalJSX {
1865
1898
"image-import" : ImageImport ;
1866
1899
"init-css-root" : InitCssRoot ;
1867
1900
"input-basic-root" : InputBasicRoot ;
1901
+ "ion-child" : IonChild ;
1902
+ "ion-host" : IonHost ;
1903
+ "ion-parent" : IonParent ;
1868
1904
"json-basic" : JsonBasic ;
1869
1905
"key-reorder" : KeyReorder ;
1870
1906
"key-reorder-root" : KeyReorderRoot ;
@@ -2011,6 +2047,9 @@ declare module "@stencil/core" {
2011
2047
"image-import" : LocalJSX . ImageImport & JSXBase . HTMLAttributes < HTMLImageImportElement > ;
2012
2048
"init-css-root" : LocalJSX . InitCssRoot & JSXBase . HTMLAttributes < HTMLInitCssRootElement > ;
2013
2049
"input-basic-root" : LocalJSX . InputBasicRoot & JSXBase . HTMLAttributes < HTMLInputBasicRootElement > ;
2050
+ "ion-child" : LocalJSX . IonChild & JSXBase . HTMLAttributes < HTMLIonChildElement > ;
2051
+ "ion-host" : LocalJSX . IonHost & JSXBase . HTMLAttributes < HTMLIonHostElement > ;
2052
+ "ion-parent" : LocalJSX . IonParent & JSXBase . HTMLAttributes < HTMLIonParentElement > ;
2014
2053
"json-basic" : LocalJSX . JsonBasic & JSXBase . HTMLAttributes < HTMLJsonBasicElement > ;
2015
2054
"key-reorder" : LocalJSX . KeyReorder & JSXBase . HTMLAttributes < HTMLKeyReorderElement > ;
2016
2055
"key-reorder-root" : LocalJSX . KeyReorderRoot & JSXBase . HTMLAttributes < HTMLKeyReorderRootElement > ;
0 commit comments