2020-01-29 12:54:23 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
/// <reference no-default-lib="true" />
|
2020-02-19 00:34:11 -05:00
|
|
|
/// <reference lib="deno.ns" />
|
|
|
|
/// <reference lib="deno.shared_globals" />
|
2020-01-29 12:54:23 -05:00
|
|
|
/// <reference lib="esnext" />
|
|
|
|
|
2020-10-11 18:04:43 -04:00
|
|
|
declare class Window extends EventTarget {
|
|
|
|
new(): Window;
|
2020-04-11 11:42:02 -04:00
|
|
|
readonly window: Window & typeof globalThis;
|
|
|
|
readonly self: Window & typeof globalThis;
|
|
|
|
onload: ((this: Window, ev: Event) => any) | null;
|
|
|
|
onunload: ((this: Window, ev: Event) => any) | null;
|
2020-03-24 23:56:40 -04:00
|
|
|
close: () => void;
|
2020-04-11 11:42:02 -04:00
|
|
|
readonly closed: boolean;
|
2020-10-13 09:31:59 -04:00
|
|
|
alert: (message?: string) => void;
|
|
|
|
confirm: (message?: string) => boolean;
|
|
|
|
prompt: (message?: string, defaultValue?: string) => string | null;
|
2020-01-29 12:54:23 -05:00
|
|
|
Deno: typeof Deno;
|
|
|
|
}
|
|
|
|
|
2020-09-25 17:23:35 -04:00
|
|
|
declare var window: Window & typeof globalThis;
|
|
|
|
declare var self: Window & typeof globalThis;
|
|
|
|
declare var onload: ((this: Window, ev: Event) => any) | null;
|
|
|
|
declare var onunload: ((this: Window, ev: Event) => any) | null;
|
2020-01-29 12:54:23 -05:00
|
|
|
|
2020-10-13 09:31:59 -04:00
|
|
|
/**
|
|
|
|
* Shows the given message and waits for the enter key pressed.
|
|
|
|
* If the stdin is not interactive, it does nothing.
|
|
|
|
* @param message
|
|
|
|
*/
|
|
|
|
declare function alert(message?: string): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the given message and waits for the answer. Returns the user's answer as boolean.
|
|
|
|
* Only `y` and `Y` are considered as true.
|
|
|
|
* If the stdin is not interactive, it returns false.
|
|
|
|
* @param message
|
|
|
|
*/
|
|
|
|
declare function confirm(message?: string): boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the given message and waits for the user's input. Returns the user's input as string.
|
|
|
|
* If the default value is given and the user inputs the empty string, then it returns the given
|
|
|
|
* default value.
|
|
|
|
* If the default value is not given and the user inputs the empty string, it returns null.
|
|
|
|
* If the stdin is not interactive, it returns null.
|
|
|
|
* @param message
|
|
|
|
* @param defaultValue
|
|
|
|
*/
|
|
|
|
declare function prompt(message?: string, defaultValue?: string): string | null;
|