interface WindowEventHandlers {
    onafterprint: null | ((this: WindowEventHandlers, ev: Event) => any);
    onbeforeprint: null | ((this: WindowEventHandlers, ev: Event) => any);
    onbeforeunload: null | ((this: WindowEventHandlers, ev: BeforeUnloadEvent) => any);
    ongamepadconnected: null | ((this: WindowEventHandlers, ev: GamepadEvent) => any);
    ongamepaddisconnected: null | ((this: WindowEventHandlers, ev: GamepadEvent) => any);
    onhashchange: null | ((this: WindowEventHandlers, ev: HashChangeEvent) => any);
    onlanguagechange: null | ((this: WindowEventHandlers, ev: Event) => any);
    onmessage: null | ((this: WindowEventHandlers, ev: MessageEvent<any>) => any);
    onmessageerror: null | ((this: WindowEventHandlers, ev: MessageEvent<any>) => any);
    onoffline: null | ((this: WindowEventHandlers, ev: Event) => any);
    ononline: null | ((this: WindowEventHandlers, ev: Event) => any);
    onpagehide: null | ((this: WindowEventHandlers, ev: PageTransitionEvent) => any);
    onpageshow: null | ((this: WindowEventHandlers, ev: PageTransitionEvent) => any);
    onpopstate: null | ((this: WindowEventHandlers, ev: PopStateEvent) => any);
    onrejectionhandled: null | ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any);
    onstorage: null | ((this: WindowEventHandlers, ev: StorageEvent) => any);
    onunhandledrejection: null | ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any);
    onunload: null | ((this: WindowEventHandlers, ev: Event) => any);
    addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: ((this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any), options?: boolean | AddEventListenerOptions): void;
    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
    removeEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: ((this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any), options?: boolean | EventListenerOptions): void;
    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
}

Hierarchy-Diagram

UML class diagram of WindowEventHandlers
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Properties

onafterprint: null | ((this: WindowEventHandlers, ev: Event) => any)

Type declaration

onbeforeprint: null | ((this: WindowEventHandlers, ev: Event) => any)

Type declaration

onbeforeunload: null | ((this: WindowEventHandlers, ev: BeforeUnloadEvent) => any)

Type declaration

ongamepadconnected: null | ((this: WindowEventHandlers, ev: GamepadEvent) => any)

Type declaration

ongamepaddisconnected: null | ((this: WindowEventHandlers, ev: GamepadEvent) => any)

Type declaration

onhashchange: null | ((this: WindowEventHandlers, ev: HashChangeEvent) => any)

Type declaration

onlanguagechange: null | ((this: WindowEventHandlers, ev: Event) => any)

Type declaration

onmessage: null | ((this: WindowEventHandlers, ev: MessageEvent<any>) => any)

Type declaration

onmessageerror: null | ((this: WindowEventHandlers, ev: MessageEvent<any>) => any)

Type declaration

onoffline: null | ((this: WindowEventHandlers, ev: Event) => any)

Type declaration

ononline: null | ((this: WindowEventHandlers, ev: Event) => any)

Type declaration

onpagehide: null | ((this: WindowEventHandlers, ev: PageTransitionEvent) => any)

Type declaration

onpageshow: null | ((this: WindowEventHandlers, ev: PageTransitionEvent) => any)

Type declaration

onpopstate: null | ((this: WindowEventHandlers, ev: PopStateEvent) => any)

Type declaration

onrejectionhandled: null | ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any)

Type declaration

onstorage: null | ((this: WindowEventHandlers, ev: StorageEvent) => any)

Type declaration

onunhandledrejection: null | ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any)

Type declaration

onunload: null | ((this: WindowEventHandlers, ev: Event) => any)

Type declaration

Deprecated

MDN Reference

Methods