1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

fix: restore reference to dom.extras in lib.dom.d.ts (#24489)

This was changed by mistake in #24326.

Closes https://github.com/denoland/deno/issues/24459.
This commit is contained in:
Bartek Iwańczuk 2024-07-09 21:46:50 +01:00 committed by GitHub
parent 3c91d597ce
commit 3674f4536b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 18 additions and 0 deletions

View file

@ -15,6 +15,7 @@ and limitations under the License.
/// <reference no-default-lib="true"/>
/// <reference lib="dom.extras" />
/////////////////////////////
/// Window APIs

View file

@ -0,0 +1,4 @@
{
"args": "run --check dom_extras_dts.ts",
"output": "dom_extras_dts.out"
}

View file

@ -0,0 +1,8 @@
{
"compilerOptions": {
"lib": [
"deno.ns",
"dom"
]
}
}

View file

@ -0,0 +1,3 @@
Check [WILDCARD]dom_extras_dts.ts
URLPattern[WILDCARD]
function

View file

@ -0,0 +1,2 @@
console.log(new URLPattern({ pathname: "/:foo/:bar/c" }));
console.log(typeof Deno.serve);