summaryrefslogtreecommitdiff
path: root/ext/fetch/lib.deno_fetch.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/fetch/lib.deno_fetch.d.ts')
-rw-r--r--ext/fetch/lib.deno_fetch.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fetch/lib.deno_fetch.d.ts b/ext/fetch/lib.deno_fetch.d.ts
index cd06deffb..62f0eab39 100644
--- a/ext/fetch/lib.deno_fetch.d.ts
+++ b/ext/fetch/lib.deno_fetch.d.ts
@@ -445,6 +445,6 @@ declare function fetch(
* `Response` to that `Request`, whether it is successful or not.
*/
declare function fetch(
- input: URL,
+ input: URL | Request | string,
init?: RequestInit,
): Promise<Response>;