@@ -75,6 +75,9 @@ export namespace Components {
75
75
76
76
interface AppSettings { }
77
77
interface AppSettingsAttributes extends StencilHTMLAttributes { }
78
+
79
+ interface AppSignin { }
80
+ interface AppSigninAttributes extends StencilHTMLAttributes { }
78
81
}
79
82
80
83
declare global {
@@ -87,6 +90,7 @@ declare global {
87
90
'AppPhotos' : Components . AppPhotos ;
88
91
'AppRoot' : Components . AppRoot ;
89
92
'AppSettings' : Components . AppSettings ;
93
+ 'AppSignin' : Components . AppSignin ;
90
94
}
91
95
92
96
interface StencilIntrinsicElements {
@@ -98,6 +102,7 @@ declare global {
98
102
'app-photos' : Components . AppPhotosAttributes ;
99
103
'app-root' : Components . AppRootAttributes ;
100
104
'app-settings' : Components . AppSettingsAttributes ;
105
+ 'app-signin' : Components . AppSigninAttributes ;
101
106
}
102
107
103
108
@@ -149,6 +154,12 @@ declare global {
149
154
new ( ) : HTMLAppSettingsElement ;
150
155
} ;
151
156
157
+ interface HTMLAppSigninElement extends Components . AppSignin , HTMLStencilElement { }
158
+ var HTMLAppSigninElement : {
159
+ prototype : HTMLAppSigninElement ;
160
+ new ( ) : HTMLAppSigninElement ;
161
+ } ;
162
+
152
163
interface HTMLElementTagNameMap {
153
164
'block-img' : HTMLBlockImgElement
154
165
'filter-popover' : HTMLFilterPopoverElement
@@ -158,6 +169,7 @@ declare global {
158
169
'app-photos' : HTMLAppPhotosElement
159
170
'app-root' : HTMLAppRootElement
160
171
'app-settings' : HTMLAppSettingsElement
172
+ 'app-signin' : HTMLAppSigninElement
161
173
}
162
174
163
175
interface ElementTagNameMap {
@@ -169,6 +181,7 @@ declare global {
169
181
'app-photos' : HTMLAppPhotosElement ;
170
182
'app-root' : HTMLAppRootElement ;
171
183
'app-settings' : HTMLAppSettingsElement ;
184
+ 'app-signin' : HTMLAppSigninElement ;
172
185
}
173
186
174
187
0 commit comments