summaryrefslogtreecommitdiff
path: root/ext/url/lib.deno_url.d.ts
diff options
context:
space:
mode:
authorayame113 <40050810+ayame113@users.noreply.github.com>2022-07-20 19:30:41 +0900
committerGitHub <noreply@github.com>2022-07-20 18:30:41 +0800
commit27a72a12b772cfa74b519714aca6e3b6fdaa5eeb (patch)
tree7a36d0494797e3296f1deae51e733378f2abfd99 /ext/url/lib.deno_url.d.ts
parentb8e1250500ba07971b2f05847fdcbbfe548caa44 (diff)
chore: align some Web API type definitions to lib.dom.d.ts (#15219)
Diffstat (limited to 'ext/url/lib.deno_url.d.ts')
-rw-r--r--ext/url/lib.deno_url.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/url/lib.deno_url.d.ts b/ext/url/lib.deno_url.d.ts
index 4dc56b3f6..d3a51a00e 100644
--- a/ext/url/lib.deno_url.d.ts
+++ b/ext/url/lib.deno_url.d.ts
@@ -153,7 +153,7 @@ declare class URLSearchParams {
/** The URL interface represents an object providing static methods used for creating object URLs. */
declare class URL {
- constructor(url: string, base?: string | URL);
+ constructor(url: string | URL, base?: string | URL);
static createObjectURL(blob: Blob): string;
static revokeObjectURL(url: string): void;