deno/ext/url/internal.d.ts
2024-01-01 19:58:21 +00:00

15 lines
424 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
/// <reference no-default-lib="true" />
/// <reference lib="esnext" />
declare module "ext:deno_url/00_url.js" {
const URL: typeof URL;
const URLSearchParams: typeof URLSearchParams;
function parseUrlEncoded(bytes: Uint8Array): [string, string][];
}
declare module "ext:deno_url/01_urlpattern.js" {
const URLPattern: typeof URLPattern;
}