From f77856274565fe59a430db002e6074cdf862b971 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Wed, 22 Nov 2023 14:47:48 +0100 Subject: [PATCH] chore: fix ts issue --- src/runtime/node/url/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/node/url/index.ts b/src/runtime/node/url/index.ts index 8b5207cf..90ba496a 100644 --- a/src/runtime/node/url/index.ts +++ b/src/runtime/node/url/index.ts @@ -1,7 +1,7 @@ // https://nodejs.org/api/url.html import type url from "node:url"; -// @ts-expect-error https://github.com/unjs/unenv/issues/65 +// TODO: https://github.com/unjs/unenv/issues/65 export const URL = globalThis.URL as typeof url.URL; export const URLSearchParams = globalThis.URLSearchParams;