@@ -16,6 +16,8 @@ export namespace Components {
16
16
"to" ?: string ;
17
17
"value" : string | number ;
18
18
}
19
+ interface AppFeedback {
20
+ }
19
21
interface AppLanding {
20
22
}
21
23
interface AppLayout {
@@ -44,6 +46,12 @@ declare global {
44
46
prototype : HTMLAppButtonElement ;
45
47
new ( ) : HTMLAppButtonElement ;
46
48
} ;
49
+ interface HTMLAppFeedbackElement extends Components . AppFeedback , HTMLStencilElement {
50
+ }
51
+ var HTMLAppFeedbackElement : {
52
+ prototype : HTMLAppFeedbackElement ;
53
+ new ( ) : HTMLAppFeedbackElement ;
54
+ } ;
47
55
interface HTMLAppLandingElement extends Components . AppLanding , HTMLStencilElement {
48
56
}
49
57
var HTMLAppLandingElement : {
@@ -76,6 +84,7 @@ declare global {
76
84
} ;
77
85
interface HTMLElementTagNameMap {
78
86
"app-button" : HTMLAppButtonElement ;
87
+ "app-feedback" : HTMLAppFeedbackElement ;
79
88
"app-landing" : HTMLAppLandingElement ;
80
89
"app-layout" : HTMLAppLayoutElement ;
81
90
"app-result" : HTMLAppResultElement ;
@@ -94,6 +103,8 @@ declare namespace LocalJSX {
94
103
"to" ?: string ;
95
104
"value" ?: string | number ;
96
105
}
106
+ interface AppFeedback {
107
+ }
97
108
interface AppLanding {
98
109
}
99
110
interface AppLayout {
@@ -110,6 +121,7 @@ declare namespace LocalJSX {
110
121
}
111
122
interface IntrinsicElements {
112
123
"app-button" : AppButton ;
124
+ "app-feedback" : AppFeedback ;
113
125
"app-landing" : AppLanding ;
114
126
"app-layout" : AppLayout ;
115
127
"app-result" : AppResult ;
@@ -122,6 +134,7 @@ declare module "@stencil/core" {
122
134
export namespace JSX {
123
135
interface IntrinsicElements {
124
136
"app-button" : LocalJSX . AppButton & JSXBase . HTMLAttributes < HTMLAppButtonElement > ;
137
+ "app-feedback" : LocalJSX . AppFeedback & JSXBase . HTMLAttributes < HTMLAppFeedbackElement > ;
125
138
"app-landing" : LocalJSX . AppLanding & JSXBase . HTMLAttributes < HTMLAppLandingElement > ;
126
139
"app-layout" : LocalJSX . AppLayout & JSXBase . HTMLAttributes < HTMLAppLayoutElement > ;
127
140
"app-result" : LocalJSX . AppResult & JSXBase . HTMLAttributes < HTMLAppResultElement > ;
0 commit comments