@ -2810,7 +2810,7 @@ declare module 'svelte/events' {
export function on < Type extends keyof WindowEventMap > (
export function on < Type extends keyof WindowEventMap > (
window : Window ,
window : Window ,
type : Type ,
type : Type ,
handler : ( this : Window , event : WindowEventMap [ Type ] ) = > any ,
handler : ( this : Window , event : WindowEventMap [ Type ] & { currentTarget : Window } ) = > any ,
options? : AddEventListenerOptions | undefined
options? : AddEventListenerOptions | undefined
) : ( ) = > void ;
) : ( ) = > void ;
/ * *
/ * *
@ -2821,7 +2821,7 @@ declare module 'svelte/events' {
export function on < Type extends keyof DocumentEventMap > (
export function on < Type extends keyof DocumentEventMap > (
document : Document ,
document : Document ,
type : Type ,
type : Type ,
handler : ( this : Document , event : DocumentEventMap [ Type ] ) = > any ,
handler : ( this : Document , event : DocumentEventMap [ Type ] & { currentTarget : Document } ) = > any ,
options? : AddEventListenerOptions | undefined
options? : AddEventListenerOptions | undefined
) : ( ) = > void ;
) : ( ) = > void ;
/ * *
/ * *
@ -2832,7 +2832,7 @@ declare module 'svelte/events' {
export function on < Element extends HTMLElement , Type extends keyof HTMLElementEventMap > (
export function on < Element extends HTMLElement , Type extends keyof HTMLElementEventMap > (
element : Element ,
element : Element ,
type : Type ,
type : Type ,
handler : ( this : Element , event : HTMLElementEventMap [ Type ] ) = > any ,
handler : ( this : Element , event : HTMLElementEventMap [ Type ] & { currentTarget : Element } ) = > any ,
options? : AddEventListenerOptions | undefined
options? : AddEventListenerOptions | undefined
) : ( ) = > void ;
) : ( ) = > void ;
/ * *
/ * *
@ -2843,7 +2843,7 @@ declare module 'svelte/events' {
export function on < Element extends MediaQueryList , Type extends keyof MediaQueryListEventMap > (
export function on < Element extends MediaQueryList , Type extends keyof MediaQueryListEventMap > (
element : Element ,
element : Element ,
type : Type ,
type : Type ,
handler : ( this : Element , event : MediaQueryListEventMap [ Type ] ) = > any ,
handler : ( this : Element , event : MediaQueryListEventMap [ Type ] & { currentTarget : Element } ) = > any ,
options? : AddEventListenerOptions | undefined
options? : AddEventListenerOptions | undefined
) : ( ) = > void ;
) : ( ) = > void ;
/ * *
/ * *