summaryrefslogtreecommitdiff
path: root/ext/url/internal.d.ts
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2023-02-07 22:09:50 +0100
committerGitHub <noreply@github.com>2023-02-07 21:09:50 +0000
commit49af1ab18da02f09e65506c873526c40d005c4ed (patch)
tree0d8f6028e98907096019500a7e1c717408eeb4e2 /ext/url/internal.d.ts
parentb4aa1530970f7b9cc4e6f2f27e077852c4e178d3 (diff)
refactor: remove prefix from include_js_files & use extension name (#17683)
Diffstat (limited to 'ext/url/internal.d.ts')
-rw-r--r--ext/url/internal.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/url/internal.d.ts b/ext/url/internal.d.ts
index b8a2a000a..585999669 100644
--- a/ext/url/internal.d.ts
+++ b/ext/url/internal.d.ts
@@ -3,12 +3,12 @@
/// <reference no-default-lib="true" />
/// <reference lib="esnext" />
-declare module "internal:ext/url/00_url.js" {
+declare module "internal:deno_url/00_url.js" {
const URL: typeof URL;
const URLSearchParams: typeof URLSearchParams;
function parseUrlEncoded(bytes: Uint8Array): [string, string][];
}
-declare module "internal:ext/url/01_urlpattern.js" {
+declare module "internal:deno_url/01_urlpattern.js" {
const URLPattern: typeof URLPattern;
}