2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
2018-08-15 20:57:36 -04:00
|
|
|
/*! ****************************************************************************
|
|
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
|
|
this file except in compliance with the License. You may obtain a copy of the
|
|
|
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
|
|
ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
|
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
|
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
|
|
|
|
|
|
See the Apache Version 2.0 License for specific language governing permissions
|
|
|
|
and limitations under the License.
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2019-03-09 12:30:38 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
|
|
|
2018-12-06 13:01:15 -05:00
|
|
|
export type BufferSource = ArrayBufferView | ArrayBuffer;
|
|
|
|
|
2018-10-23 07:43:43 -04:00
|
|
|
export type HeadersInit =
|
|
|
|
| Headers
|
|
|
|
| Array<[string, string]>
|
|
|
|
| Record<string, string>;
|
2018-09-30 10:31:50 -04:00
|
|
|
export type URLSearchParamsInit = string | string[][] | Record<string, string>;
|
2018-08-15 20:57:36 -04:00
|
|
|
type BodyInit =
|
|
|
|
| Blob
|
|
|
|
| BufferSource
|
|
|
|
| FormData
|
|
|
|
| URLSearchParams
|
|
|
|
| ReadableStream
|
|
|
|
| string;
|
2018-09-16 02:46:12 -04:00
|
|
|
export type RequestInfo = Request | string;
|
2018-08-15 20:57:36 -04:00
|
|
|
type ReferrerPolicy =
|
|
|
|
| ""
|
|
|
|
| "no-referrer"
|
|
|
|
| "no-referrer-when-downgrade"
|
|
|
|
| "origin-only"
|
|
|
|
| "origin-when-cross-origin"
|
|
|
|
| "unsafe-url";
|
2018-09-16 02:46:12 -04:00
|
|
|
export type BlobPart = BufferSource | Blob | string;
|
2018-12-23 11:44:08 -05:00
|
|
|
export type FormDataEntryValue = DomFile | string;
|
2018-09-16 02:46:12 -04:00
|
|
|
export type EventListenerOrEventListenerObject =
|
2018-08-15 20:57:36 -04:00
|
|
|
| EventListener
|
|
|
|
| EventListenerObject;
|
|
|
|
|
2018-10-23 07:43:43 -04:00
|
|
|
export interface DomIterable<K, V> {
|
|
|
|
keys(): IterableIterator<K>;
|
|
|
|
values(): IterableIterator<V>;
|
|
|
|
entries(): IterableIterator<[K, V]>;
|
|
|
|
[Symbol.iterator](): IterableIterator<[K, V]>;
|
|
|
|
forEach(
|
|
|
|
callback: (value: V, key: K, parent: this) => void,
|
|
|
|
thisArg?: any
|
|
|
|
): void;
|
|
|
|
}
|
|
|
|
|
2018-10-24 11:54:34 -04:00
|
|
|
type EndingType = "transparent" | "native";
|
2018-09-14 08:45:50 -04:00
|
|
|
|
2018-09-16 02:46:12 -04:00
|
|
|
export interface BlobPropertyBag {
|
2018-08-15 20:57:36 -04:00
|
|
|
type?: string;
|
2018-09-14 08:45:50 -04:00
|
|
|
ending?: EndingType;
|
2018-08-15 20:57:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
interface AbortSignalEventMap {
|
|
|
|
abort: ProgressEvent;
|
|
|
|
}
|
|
|
|
|
2019-01-05 10:02:44 -05:00
|
|
|
export interface EventTarget {
|
2018-08-15 20:57:36 -04:00
|
|
|
addEventListener(
|
|
|
|
type: string,
|
|
|
|
listener: EventListenerOrEventListenerObject | null,
|
|
|
|
options?: boolean | AddEventListenerOptions
|
|
|
|
): void;
|
|
|
|
dispatchEvent(evt: Event): boolean;
|
|
|
|
removeEventListener(
|
|
|
|
type: string,
|
|
|
|
listener?: EventListenerOrEventListenerObject | null,
|
|
|
|
options?: EventListenerOptions | boolean
|
|
|
|
): void;
|
|
|
|
}
|
|
|
|
|
2018-09-16 02:46:12 -04:00
|
|
|
export interface ProgressEventInit extends EventInit {
|
2018-08-15 20:57:36 -04:00
|
|
|
lengthComputable?: boolean;
|
|
|
|
loaded?: number;
|
|
|
|
total?: number;
|
|
|
|
}
|
|
|
|
|
2018-09-30 10:31:50 -04:00
|
|
|
export interface URLSearchParams {
|
2018-08-15 20:57:36 -04:00
|
|
|
/**
|
|
|
|
* Appends a specified key/value pair as a new search parameter.
|
|
|
|
*/
|
|
|
|
append(name: string, value: string): void;
|
|
|
|
/**
|
2018-09-01 18:49:47 -04:00
|
|
|
* Deletes the given search parameter, and its associated value,
|
|
|
|
* from the list of all search parameters.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
delete(name: string): void;
|
|
|
|
/**
|
|
|
|
* Returns the first value associated to the given search parameter.
|
|
|
|
*/
|
|
|
|
get(name: string): string | null;
|
|
|
|
/**
|
|
|
|
* Returns all the values association with a given search parameter.
|
|
|
|
*/
|
|
|
|
getAll(name: string): string[];
|
|
|
|
/**
|
|
|
|
* Returns a Boolean indicating if such a search parameter exists.
|
|
|
|
*/
|
|
|
|
has(name: string): boolean;
|
|
|
|
/**
|
2018-09-01 18:49:47 -04:00
|
|
|
* Sets the value associated to a given search parameter to the given value.
|
|
|
|
* If there were several values, delete the others.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
set(name: string, value: string): void;
|
2018-09-30 10:31:50 -04:00
|
|
|
/**
|
2018-09-30 11:14:44 -04:00
|
|
|
* Sort all key/value pairs contained in this object in place
|
|
|
|
* and return undefined. The sort order is according to Unicode
|
2018-09-30 10:31:50 -04:00
|
|
|
* code points of the keys.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
sort(): void;
|
2018-09-30 10:31:50 -04:00
|
|
|
/**
|
|
|
|
* Returns a query string suitable for use in a URL.
|
|
|
|
*/
|
|
|
|
toString(): string;
|
2018-09-30 11:14:44 -04:00
|
|
|
/**
|
|
|
|
* Iterates over each name-value pair in the query
|
2018-09-30 10:31:50 -04:00
|
|
|
* and invokes the given function.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
forEach(
|
|
|
|
callbackfn: (value: string, key: string, parent: URLSearchParams) => void,
|
|
|
|
thisArg?: any
|
|
|
|
): void;
|
|
|
|
}
|
|
|
|
|
2019-01-05 10:02:44 -05:00
|
|
|
export interface EventListener {
|
2018-08-15 20:57:36 -04:00
|
|
|
(evt: Event): void;
|
|
|
|
}
|
|
|
|
|
2019-01-05 10:02:44 -05:00
|
|
|
export interface EventInit {
|
2018-08-15 20:57:36 -04:00
|
|
|
bubbles?: boolean;
|
|
|
|
cancelable?: boolean;
|
|
|
|
composed?: boolean;
|
|
|
|
}
|
|
|
|
|
2019-01-23 07:20:53 -05:00
|
|
|
export interface CustomEventInit extends EventInit {
|
|
|
|
detail?: any;
|
|
|
|
}
|
|
|
|
|
2019-01-05 10:02:44 -05:00
|
|
|
export enum EventPhase {
|
|
|
|
NONE = 0,
|
|
|
|
CAPTURING_PHASE = 1,
|
|
|
|
AT_TARGET = 2,
|
|
|
|
BUBBLING_PHASE = 3
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface EventPath {
|
|
|
|
item: EventTarget;
|
|
|
|
itemInShadowTree: boolean;
|
|
|
|
relatedTarget: EventTarget | null;
|
|
|
|
rootOfClosedTree: boolean;
|
|
|
|
slotInClosedTree: boolean;
|
|
|
|
target: EventTarget | null;
|
|
|
|
touchTargetList: EventTarget[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Event {
|
|
|
|
readonly type: string;
|
|
|
|
readonly target: EventTarget | null;
|
|
|
|
readonly currentTarget: EventTarget | null;
|
|
|
|
composedPath(): EventPath[];
|
|
|
|
|
|
|
|
readonly eventPhase: number;
|
|
|
|
|
|
|
|
stopPropagation(): void;
|
|
|
|
stopImmediatePropagation(): void;
|
|
|
|
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly bubbles: boolean;
|
|
|
|
readonly cancelable: boolean;
|
2019-01-05 10:02:44 -05:00
|
|
|
preventDefault(): void;
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly defaultPrevented: boolean;
|
2019-01-05 10:02:44 -05:00
|
|
|
readonly composed: boolean;
|
|
|
|
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly isTrusted: boolean;
|
2019-01-05 10:02:44 -05:00
|
|
|
readonly timeStamp: Date;
|
2018-08-15 20:57:36 -04:00
|
|
|
}
|
|
|
|
|
2019-01-23 07:20:53 -05:00
|
|
|
export interface CustomEvent extends Event {
|
|
|
|
readonly detail: any;
|
|
|
|
initCustomEvent(
|
|
|
|
type: string,
|
|
|
|
bubbles?: boolean,
|
|
|
|
cancelable?: boolean,
|
|
|
|
detail?: any | null
|
|
|
|
): void;
|
|
|
|
}
|
|
|
|
|
2018-12-23 11:44:08 -05:00
|
|
|
export interface DomFile extends Blob {
|
2018-08-30 03:06:19 -04:00
|
|
|
readonly lastModified: number;
|
|
|
|
readonly name: string;
|
|
|
|
}
|
|
|
|
|
2019-04-12 14:54:13 -04:00
|
|
|
export interface DomFileConstructor {
|
|
|
|
new (bits: BlobPart[], filename: string, options?: FilePropertyBag): DomFile;
|
|
|
|
prototype: DomFile;
|
|
|
|
}
|
|
|
|
|
2018-09-16 02:46:12 -04:00
|
|
|
export interface FilePropertyBag extends BlobPropertyBag {
|
2018-08-30 03:06:19 -04:00
|
|
|
lastModified?: number;
|
|
|
|
}
|
|
|
|
|
2018-08-15 20:57:36 -04:00
|
|
|
interface ProgressEvent extends Event {
|
|
|
|
readonly lengthComputable: boolean;
|
|
|
|
readonly loaded: number;
|
|
|
|
readonly total: number;
|
|
|
|
}
|
|
|
|
|
2019-01-05 10:02:44 -05:00
|
|
|
export interface EventListenerOptions {
|
2018-08-15 20:57:36 -04:00
|
|
|
capture?: boolean;
|
|
|
|
}
|
|
|
|
|
2019-01-05 10:02:44 -05:00
|
|
|
export interface AddEventListenerOptions extends EventListenerOptions {
|
2018-08-15 20:57:36 -04:00
|
|
|
once?: boolean;
|
|
|
|
passive?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface AbortSignal extends EventTarget {
|
|
|
|
readonly aborted: boolean;
|
|
|
|
onabort: ((this: AbortSignal, ev: ProgressEvent) => any) | null;
|
|
|
|
addEventListener<K extends keyof AbortSignalEventMap>(
|
|
|
|
type: K,
|
|
|
|
listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any,
|
|
|
|
options?: boolean | AddEventListenerOptions
|
|
|
|
): void;
|
|
|
|
addEventListener(
|
|
|
|
type: string,
|
|
|
|
listener: EventListenerOrEventListenerObject,
|
|
|
|
options?: boolean | AddEventListenerOptions
|
|
|
|
): void;
|
|
|
|
removeEventListener<K extends keyof AbortSignalEventMap>(
|
|
|
|
type: K,
|
|
|
|
listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any,
|
|
|
|
options?: boolean | EventListenerOptions
|
|
|
|
): void;
|
|
|
|
removeEventListener(
|
|
|
|
type: string,
|
|
|
|
listener: EventListenerOrEventListenerObject,
|
|
|
|
options?: boolean | EventListenerOptions
|
|
|
|
): void;
|
|
|
|
}
|
|
|
|
|
2018-10-26 12:14:06 -04:00
|
|
|
export interface ReadableStream {
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly locked: boolean;
|
|
|
|
cancel(): Promise<void>;
|
|
|
|
getReader(): ReadableStreamReader;
|
|
|
|
}
|
|
|
|
|
2019-01-05 10:02:44 -05:00
|
|
|
export interface EventListenerObject {
|
2018-08-15 20:57:36 -04:00
|
|
|
handleEvent(evt: Event): void;
|
|
|
|
}
|
|
|
|
|
2018-10-26 12:14:06 -04:00
|
|
|
export interface ReadableStreamReader {
|
2018-08-15 20:57:36 -04:00
|
|
|
cancel(): Promise<void>;
|
|
|
|
read(): Promise<any>;
|
|
|
|
releaseLock(): void;
|
|
|
|
}
|
|
|
|
|
2018-11-04 13:05:02 -05:00
|
|
|
export interface FormData extends DomIterable<string, FormDataEntryValue> {
|
2018-08-15 20:57:36 -04:00
|
|
|
append(name: string, value: string | Blob, fileName?: string): void;
|
|
|
|
delete(name: string): void;
|
|
|
|
get(name: string): FormDataEntryValue | null;
|
|
|
|
getAll(name: string): FormDataEntryValue[];
|
|
|
|
has(name: string): boolean;
|
|
|
|
set(name: string, value: string | Blob, fileName?: string): void;
|
2018-11-04 13:05:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface FormDataConstructor {
|
|
|
|
new (): FormData;
|
|
|
|
prototype: FormData;
|
2018-08-15 20:57:36 -04:00
|
|
|
}
|
|
|
|
|
2018-10-14 16:29:50 -04:00
|
|
|
/** A blob object represents a file-like object of immutable, raw data. */
|
2018-08-15 20:57:36 -04:00
|
|
|
export interface Blob {
|
2018-10-14 16:29:50 -04:00
|
|
|
/** The size, in bytes, of the data contained in the `Blob` object. */
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly size: number;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** A string indicating the media type of the data contained in the `Blob`.
|
|
|
|
* If the type is unknown, this string is empty.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly type: string;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns a new `Blob` object containing the data in the specified range of
|
|
|
|
* bytes of the source `Blob`.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
slice(start?: number, end?: number, contentType?: string): Blob;
|
|
|
|
}
|
|
|
|
|
2018-10-26 12:14:06 -04:00
|
|
|
export interface Body {
|
2018-10-14 16:29:50 -04:00
|
|
|
/** A simple getter used to expose a `ReadableStream` of the body contents. */
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly body: ReadableStream | null;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Stores a `Boolean` that declares whether the body has been used in a
|
|
|
|
* response yet.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly bodyUsed: boolean;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Takes a `Response` stream and reads it to completion. It returns a promise
|
|
|
|
* that resolves with an `ArrayBuffer`.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
arrayBuffer(): Promise<ArrayBuffer>;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Takes a `Response` stream and reads it to completion. It returns a promise
|
|
|
|
* that resolves with a `Blob`.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
blob(): Promise<Blob>;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Takes a `Response` stream and reads it to completion. It returns a promise
|
|
|
|
* that resolves with a `FormData` object.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
formData(): Promise<FormData>;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Takes a `Response` stream and reads it to completion. It returns a promise
|
|
|
|
* that resolves with the result of parsing the body text as JSON.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
json(): Promise<any>;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Takes a `Response` stream and reads it to completion. It returns a promise
|
|
|
|
* that resolves with a `USVString` (text).
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
text(): Promise<string>;
|
|
|
|
}
|
|
|
|
|
2018-10-23 07:43:43 -04:00
|
|
|
export interface Headers extends DomIterable<string, string> {
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Appends a new value onto an existing header inside a `Headers` object, or
|
|
|
|
* adds the header if it does not already exist.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
append(name: string, value: string): void;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Deletes a header from a `Headers` object. */
|
2018-08-15 20:57:36 -04:00
|
|
|
delete(name: string): void;
|
2018-10-19 19:15:27 -04:00
|
|
|
/** Returns an iterator allowing to go through all key/value pairs
|
|
|
|
* contained in this Headers object. The both the key and value of each pairs
|
2018-10-19 12:12:36 -04:00
|
|
|
* are ByteString objects.
|
|
|
|
*/
|
|
|
|
entries(): IterableIterator<[string, string]>;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns a `ByteString` sequence of all the values of a header within a
|
|
|
|
* `Headers` object with a given name.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
get(name: string): string | null;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns a boolean stating whether a `Headers` object contains a certain
|
|
|
|
* header.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
has(name: string): boolean;
|
2018-10-19 19:15:27 -04:00
|
|
|
/** Returns an iterator allowing to go through all keys contained in
|
2018-10-19 12:12:36 -04:00
|
|
|
* this Headers object. The keys are ByteString objects.
|
|
|
|
*/
|
|
|
|
keys(): IterableIterator<string>;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Sets a new value for an existing header inside a Headers object, or adds
|
|
|
|
* the header if it does not already exist.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
set(name: string, value: string): void;
|
2018-10-19 19:15:27 -04:00
|
|
|
/** Returns an iterator allowing to go through all values contained in
|
2018-10-19 12:12:36 -04:00
|
|
|
* this Headers object. The values are ByteString objects.
|
|
|
|
*/
|
|
|
|
values(): IterableIterator<string>;
|
2018-08-15 20:57:36 -04:00
|
|
|
forEach(
|
2018-10-23 07:43:43 -04:00
|
|
|
callbackfn: (value: string, key: string, parent: this) => void,
|
2018-08-15 20:57:36 -04:00
|
|
|
thisArg?: any
|
|
|
|
): void;
|
2018-10-19 19:15:27 -04:00
|
|
|
/** The Symbol.iterator well-known symbol specifies the default
|
2018-10-19 12:12:36 -04:00
|
|
|
* iterator for this Headers object
|
|
|
|
*/
|
|
|
|
[Symbol.iterator](): IterableIterator<[string, string]>;
|
2018-08-15 20:57:36 -04:00
|
|
|
}
|
|
|
|
|
2018-10-23 07:43:43 -04:00
|
|
|
export interface HeadersConstructor {
|
|
|
|
new (init?: HeadersInit): Headers;
|
|
|
|
prototype: Headers;
|
|
|
|
}
|
|
|
|
|
2018-08-15 20:57:36 -04:00
|
|
|
type RequestCache =
|
|
|
|
| "default"
|
|
|
|
| "no-store"
|
|
|
|
| "reload"
|
|
|
|
| "no-cache"
|
|
|
|
| "force-cache"
|
|
|
|
| "only-if-cached";
|
|
|
|
type RequestCredentials = "omit" | "same-origin" | "include";
|
|
|
|
type RequestDestination =
|
|
|
|
| ""
|
|
|
|
| "audio"
|
|
|
|
| "audioworklet"
|
|
|
|
| "document"
|
|
|
|
| "embed"
|
|
|
|
| "font"
|
|
|
|
| "image"
|
|
|
|
| "manifest"
|
|
|
|
| "object"
|
|
|
|
| "paintworklet"
|
|
|
|
| "report"
|
|
|
|
| "script"
|
|
|
|
| "sharedworker"
|
|
|
|
| "style"
|
|
|
|
| "track"
|
|
|
|
| "video"
|
|
|
|
| "worker"
|
|
|
|
| "xslt";
|
|
|
|
type RequestMode = "navigate" | "same-origin" | "no-cors" | "cors";
|
|
|
|
type RequestRedirect = "follow" | "error" | "manual";
|
|
|
|
type ResponseType =
|
|
|
|
| "basic"
|
|
|
|
| "cors"
|
|
|
|
| "default"
|
|
|
|
| "error"
|
|
|
|
| "opaque"
|
|
|
|
| "opaqueredirect";
|
|
|
|
|
|
|
|
export interface RequestInit {
|
|
|
|
body?: BodyInit | null;
|
|
|
|
cache?: RequestCache;
|
|
|
|
credentials?: RequestCredentials;
|
|
|
|
headers?: HeadersInit;
|
|
|
|
integrity?: string;
|
|
|
|
keepalive?: boolean;
|
|
|
|
method?: string;
|
|
|
|
mode?: RequestMode;
|
|
|
|
redirect?: RequestRedirect;
|
|
|
|
referrer?: string;
|
|
|
|
referrerPolicy?: ReferrerPolicy;
|
|
|
|
signal?: AbortSignal | null;
|
|
|
|
window?: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ResponseInit {
|
|
|
|
headers?: HeadersInit;
|
|
|
|
status?: number;
|
|
|
|
statusText?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Request extends Body {
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns the cache mode associated with request, which is a string
|
|
|
|
* indicating how the the request will interact with the browser's cache when
|
|
|
|
* fetching.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly cache: RequestCache;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns the credentials mode associated with request, which is a string
|
2018-09-01 18:49:47 -04:00
|
|
|
* indicating whether credentials will be sent with the request always, never,
|
|
|
|
* or only when sent to a same-origin URL.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly credentials: RequestCredentials;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns the kind of resource requested by request, (e.g., `document` or
|
|
|
|
* `script`).
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly destination: RequestDestination;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns a Headers object consisting of the headers associated with
|
|
|
|
* request.
|
|
|
|
*
|
2018-09-01 18:49:47 -04:00
|
|
|
* Note that headers added in the network layer by the user agent
|
2018-10-14 16:29:50 -04:00
|
|
|
* will not be accounted for in this object, (e.g., the `Host` header).
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly headers: Headers;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns request's subresource integrity metadata, which is a cryptographic
|
|
|
|
* hash of the resource being fetched. Its value consists of multiple hashes
|
|
|
|
* separated by whitespace. [SRI]
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly integrity: string;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns a boolean indicating whether or not request is for a history
|
2018-10-24 11:54:34 -04:00
|
|
|
* navigation (a.k.a. back-forward navigation).
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly isHistoryNavigation: boolean;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns a boolean indicating whether or not request is for a reload
|
|
|
|
* navigation.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly isReloadNavigation: boolean;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns a boolean indicating whether or not request can outlive the global
|
|
|
|
* in which it was created.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly keepalive: boolean;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns request's HTTP method, which is `GET` by default. */
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly method: string;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns the mode associated with request, which is a string indicating
|
|
|
|
* whether the request will use CORS, or will be restricted to same-origin
|
|
|
|
* URLs.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly mode: RequestMode;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns the redirect mode associated with request, which is a string
|
2018-09-01 18:49:47 -04:00
|
|
|
* indicating how redirects for the request will be handled during fetching.
|
2018-10-14 16:29:50 -04:00
|
|
|
*
|
2018-09-01 18:49:47 -04:00
|
|
|
* A request will follow redirects by default.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly redirect: RequestRedirect;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns the referrer of request. Its value can be a same-origin URL if
|
2018-08-15 20:57:36 -04:00
|
|
|
* explicitly set in init, the empty string to indicate no referrer, and
|
2018-10-14 16:29:50 -04:00
|
|
|
* `about:client` when defaulting to the global's default.
|
|
|
|
*
|
2018-09-01 18:49:47 -04:00
|
|
|
* This is used during fetching to determine the value of the `Referer`
|
|
|
|
* header of the request being made.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly referrer: string;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns the referrer policy associated with request. This is used during
|
2018-08-15 20:57:36 -04:00
|
|
|
* fetching to compute the value of the request's referrer.
|
|
|
|
*/
|
|
|
|
readonly referrerPolicy: ReferrerPolicy;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns the signal associated with request, which is an AbortSignal object
|
|
|
|
* indicating whether or not request has been aborted, and its abort event
|
|
|
|
* handler.
|
2018-08-15 20:57:36 -04:00
|
|
|
*/
|
|
|
|
readonly signal: AbortSignal;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Returns the URL of request as a string. */
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly url: string;
|
|
|
|
clone(): Request;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Response extends Body {
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Contains the `Headers` object associated with the response. */
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly headers: Headers;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Contains a boolean stating whether the response was successful (status in
|
|
|
|
* the range 200-299) or not.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly ok: boolean;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Indicates whether or not the response is the result of a redirect; that
|
|
|
|
* is, its URL list has more than one entry.
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly redirected: boolean;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Contains the status code of the response (e.g., `200` for a success). */
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly status: number;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Contains the status message corresponding to the status code (e.g., `OK`
|
|
|
|
* for `200`).
|
|
|
|
*/
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly statusText: string;
|
|
|
|
readonly trailer: Promise<Headers>;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Contains the type of the response (e.g., `basic`, `cors`). */
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly type: ResponseType;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Contains the URL of the response. */
|
2018-08-15 20:57:36 -04:00
|
|
|
readonly url: string;
|
2018-10-14 16:29:50 -04:00
|
|
|
/** Creates a clone of a `Response` object. */
|
2018-08-15 20:57:36 -04:00
|
|
|
clone(): Response;
|
|
|
|
}
|
2019-02-12 21:14:02 -05:00
|
|
|
|
|
|
|
export interface Location {
|
|
|
|
/**
|
|
|
|
* Returns a DOMStringList object listing the origins of the ancestor browsing
|
|
|
|
* contexts, from the parent browsing context to the top-level browsing
|
|
|
|
* context.
|
|
|
|
*/
|
|
|
|
readonly ancestorOrigins: string[];
|
|
|
|
/**
|
|
|
|
* Returns the Location object's URL's fragment (includes leading "#" if
|
|
|
|
* non-empty).
|
|
|
|
* Can be set, to navigate to the same URL with a changed fragment (ignores
|
|
|
|
* leading "#").
|
|
|
|
*/
|
|
|
|
hash: string;
|
|
|
|
/**
|
|
|
|
* Returns the Location object's URL's host and port (if different from the
|
|
|
|
* default port for the scheme). Can be set, to navigate to the same URL with
|
|
|
|
* a changed host and port.
|
|
|
|
*/
|
|
|
|
host: string;
|
|
|
|
/**
|
|
|
|
* Returns the Location object's URL's host. Can be set, to navigate to the
|
|
|
|
* same URL with a changed host.
|
|
|
|
*/
|
|
|
|
hostname: string;
|
|
|
|
/**
|
|
|
|
* Returns the Location object's URL. Can be set, to navigate to the given
|
|
|
|
* URL.
|
|
|
|
*/
|
|
|
|
href: string;
|
|
|
|
/** Returns the Location object's URL's origin. */
|
|
|
|
readonly origin: string;
|
|
|
|
/**
|
|
|
|
* Returns the Location object's URL's path.
|
|
|
|
* Can be set, to navigate to the same URL with a changed path.
|
|
|
|
*/
|
|
|
|
pathname: string;
|
|
|
|
/**
|
|
|
|
* Returns the Location object's URL's port.
|
|
|
|
* Can be set, to navigate to the same URL with a changed port.
|
|
|
|
*/
|
|
|
|
port: string;
|
|
|
|
/**
|
|
|
|
* Returns the Location object's URL's scheme.
|
|
|
|
* Can be set, to navigate to the same URL with a changed scheme.
|
|
|
|
*/
|
|
|
|
protocol: string;
|
|
|
|
/**
|
|
|
|
* Returns the Location object's URL's query (includes leading "?" if
|
|
|
|
* non-empty). Can be set, to navigate to the same URL with a changed query
|
|
|
|
* (ignores leading "?").
|
|
|
|
*/
|
|
|
|
search: string;
|
|
|
|
/**
|
|
|
|
* Navigates to the given URL.
|
|
|
|
*/
|
|
|
|
assign(url: string): void;
|
|
|
|
/**
|
|
|
|
* Reloads the current page.
|
|
|
|
*/
|
|
|
|
reload(): void;
|
|
|
|
/** @deprecated */
|
|
|
|
reload(forcedReload: boolean): void;
|
|
|
|
/**
|
|
|
|
* Removes the current page from the session history and navigates to the
|
|
|
|
* given URL.
|
|
|
|
*/
|
|
|
|
replace(url: string): void;
|
|
|
|
}
|