Skip to content

Commit 1ce88e5

Browse files
committed
components update
1 parent 5ded66d commit 1ce88e5

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/components.d.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ export namespace Components {
7575

7676
interface AppSettings {}
7777
interface AppSettingsAttributes extends StencilHTMLAttributes {}
78+
79+
interface AppSignin {}
80+
interface AppSigninAttributes extends StencilHTMLAttributes {}
7881
}
7982

8083
declare global {
@@ -87,6 +90,7 @@ declare global {
8790
'AppPhotos': Components.AppPhotos;
8891
'AppRoot': Components.AppRoot;
8992
'AppSettings': Components.AppSettings;
93+
'AppSignin': Components.AppSignin;
9094
}
9195

9296
interface StencilIntrinsicElements {
@@ -98,6 +102,7 @@ declare global {
98102
'app-photos': Components.AppPhotosAttributes;
99103
'app-root': Components.AppRootAttributes;
100104
'app-settings': Components.AppSettingsAttributes;
105+
'app-signin': Components.AppSigninAttributes;
101106
}
102107

103108

@@ -149,6 +154,12 @@ declare global {
149154
new (): HTMLAppSettingsElement;
150155
};
151156

157+
interface HTMLAppSigninElement extends Components.AppSignin, HTMLStencilElement {}
158+
var HTMLAppSigninElement: {
159+
prototype: HTMLAppSigninElement;
160+
new (): HTMLAppSigninElement;
161+
};
162+
152163
interface HTMLElementTagNameMap {
153164
'block-img': HTMLBlockImgElement
154165
'filter-popover': HTMLFilterPopoverElement
@@ -158,6 +169,7 @@ declare global {
158169
'app-photos': HTMLAppPhotosElement
159170
'app-root': HTMLAppRootElement
160171
'app-settings': HTMLAppSettingsElement
172+
'app-signin': HTMLAppSigninElement
161173
}
162174

163175
interface ElementTagNameMap {
@@ -169,6 +181,7 @@ declare global {
169181
'app-photos': HTMLAppPhotosElement;
170182
'app-root': HTMLAppRootElement;
171183
'app-settings': HTMLAppSettingsElement;
184+
'app-signin': HTMLAppSigninElement;
172185
}
173186

174187

0 commit comments

Comments
 (0)