interface Window
extends EventTarget
Properties Jump to heading
readonly
Jump to headingwindow: Window & globalThisreadonly
Jump to headingself: Window & globalThisJump to headingonerror: ((this: Window,ev: ErrorEvent,) => any) | nullJump to headingonload: (() => any) | nullJump to headingonbeforeunload: (() => any) | nullJump to headingonunload: (() => any) | nullJump to headingonunhandledrejection: ((this: Window,) => any) | nullJump to headingonrejectionhandled: ((this: Window,) => any) | nullJump to headingclose: () => voidreadonly
Jump to headingclosed: booleanJump to headingalert: (message?: string) => voidJump to headingconfirm: (message?: string) => booleanJump to headingprompt: (message?: string,defaultValue?: string,) => string | nullJump to headingDeno: DenoJump to headingname: stringMethods Jump to heading
Jump to headingaddEventListener<K extends keyof WindowEventMap>(type: K,listener: (this: Window,ev: WindowEventMap[K],) => any,options?: boolean | AddEventListenerOptions,): voidJump to headingaddEventListener(type: string,listener: EventListenerOrEventListenerObject,options?: boolean | AddEventListenerOptions,): voidJump to headingremoveEventListener<K extends keyof WindowEventMap>(type: K,listener: (this: Window,ev: WindowEventMap[K],) => any,options?: boolean | EventListenerOptions,): void