diff options
author | Kenta Moriuchi <moriken@kimamass.com> | 2024-07-23 05:02:39 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-22 22:02:39 +0200 |
commit | 715675565a928a7ac819b89fa40d8b74e7e1c8bc (patch) | |
tree | 06db9c2a77abd67491586e72522859f4010317e9 /tests/specs/run/dom_extras_dts/main.ts | |
parent | 6960637b5ce20f717d853ef42d6d8132297ab64b (diff) |
fix(types): Conform lib.deno_web.d.ts to lib.dom.d.ts and lib.webworker.d.ts (#24599)
Fix #24578
Fix #21981
Diffstat (limited to 'tests/specs/run/dom_extras_dts/main.ts')
-rw-r--r-- | tests/specs/run/dom_extras_dts/main.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/specs/run/dom_extras_dts/main.ts b/tests/specs/run/dom_extras_dts/main.ts new file mode 100644 index 000000000..1e67585a0 --- /dev/null +++ b/tests/specs/run/dom_extras_dts/main.ts @@ -0,0 +1,2 @@ +console.log(new URLPattern({ pathname: "/:foo/:bar/c" })); +console.log(typeof Deno.serve); |