mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
Fix definition of URL constructor (#5521)
This commit is contained in:
parent
4db4a7fbcc
commit
63bc468365
3 changed files with 3 additions and 3 deletions
2
cli/js/lib.deno.shared_globals.d.ts
vendored
2
cli/js/lib.deno.shared_globals.d.ts
vendored
|
@ -1172,7 +1172,7 @@ interface URL {
|
|||
|
||||
declare const URL: {
|
||||
prototype: URL;
|
||||
new (url: string | URL, base?: string | URL): URL;
|
||||
new (url: string, base?: string | URL): URL;
|
||||
createObjectURL(object: any): string;
|
||||
revokeObjectURL(url: string): void;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue