@@ -204,6 +204,9 @@ export namespace Components {
204204 interface LifecycleUnloadRoot { }
205205 interface LifecycleUnloadRootAttributes extends StencilHTMLAttributes { }
206206
207+ interface ListenWindow { }
208+ interface ListenWindowAttributes extends StencilHTMLAttributes { }
209+
207210 interface NodeGlobals { }
208211 interface NodeGlobalsAttributes extends StencilHTMLAttributes { }
209212
@@ -412,6 +415,7 @@ declare global {
412415 'LifecycleUnloadA' : Components . LifecycleUnloadA ;
413416 'LifecycleUnloadB' : Components . LifecycleUnloadB ;
414417 'LifecycleUnloadRoot' : Components . LifecycleUnloadRoot ;
418+ 'ListenWindow' : Components . ListenWindow ;
415419 'NodeGlobals' : Components . NodeGlobals ;
416420 'ReflectToAttr' : Components . ReflectToAttr ;
417421 'ScopedBasicRoot' : Components . ScopedBasicRoot ;
@@ -490,6 +494,7 @@ declare global {
490494 'lifecycle-unload-a' : Components . LifecycleUnloadAAttributes ;
491495 'lifecycle-unload-b' : Components . LifecycleUnloadBAttributes ;
492496 'lifecycle-unload-root' : Components . LifecycleUnloadRootAttributes ;
497+ 'listen-window' : Components . ListenWindowAttributes ;
493498 'node-globals' : Components . NodeGlobalsAttributes ;
494499 'reflect-to-attr' : Components . ReflectToAttrAttributes ;
495500 'scoped-basic-root' : Components . ScopedBasicRootAttributes ;
@@ -743,6 +748,12 @@ declare global {
743748 new ( ) : HTMLLifecycleUnloadRootElement ;
744749 } ;
745750
751+ interface HTMLListenWindowElement extends Components . ListenWindow , HTMLStencilElement { }
752+ var HTMLListenWindowElement : {
753+ prototype : HTMLListenWindowElement ;
754+ new ( ) : HTMLListenWindowElement ;
755+ } ;
756+
746757 interface HTMLNodeGlobalsElement extends Components . NodeGlobals , HTMLStencilElement { }
747758 var HTMLNodeGlobalsElement : {
748759 prototype : HTMLNodeGlobalsElement ;
@@ -1019,6 +1030,7 @@ declare global {
10191030 'lifecycle-unload-a' : HTMLLifecycleUnloadAElement
10201031 'lifecycle-unload-b' : HTMLLifecycleUnloadBElement
10211032 'lifecycle-unload-root' : HTMLLifecycleUnloadRootElement
1033+ 'listen-window' : HTMLListenWindowElement
10221034 'node-globals' : HTMLNodeGlobalsElement
10231035 'reflect-to-attr' : HTMLReflectToAttrElement
10241036 'scoped-basic-root' : HTMLScopedBasicRootElement
@@ -1097,6 +1109,7 @@ declare global {
10971109 'lifecycle-unload-a' : HTMLLifecycleUnloadAElement ;
10981110 'lifecycle-unload-b' : HTMLLifecycleUnloadBElement ;
10991111 'lifecycle-unload-root' : HTMLLifecycleUnloadRootElement ;
1112+ 'listen-window' : HTMLListenWindowElement ;
11001113 'node-globals' : HTMLNodeGlobalsElement ;
11011114 'reflect-to-attr' : HTMLReflectToAttrElement ;
11021115 'scoped-basic-root' : HTMLScopedBasicRootElement ;
0 commit comments