Window
class Window
extends EventTarget {
alert: (message?: string) => void;
close: () => void;
readonly closed: boolean;
confirm: (message?: string) => boolean;
Deno: Deno;
Location: Location;
Navigator: Navigator;
prompt: (message?: string, defaultValue?: string) => string | null;
readonly self: Window & globalThis;
readonly window: Window & globalThis;
}
Properties
alert: (message?: string) => void
confirm: (message?: string) => boolean
prompt: (message?: string, defaultValue?: string) => string | null
Methods