From f587209d2750f65a977140ba5e4bf4a44954e4ea Mon Sep 17 00:00:00 2001 From: Griffin Castles Date: Mon, 5 Feb 2024 19:30:20 +0800 Subject: [PATCH] =?UTF-8?q?=E2=86=A9=20revert(util):=20Type=20annotation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Revert type annotation --- selene-vscode/src/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selene-vscode/src/util.ts b/selene-vscode/src/util.ts index 586ebe04..34fe12fd 100644 --- a/selene-vscode/src/util.ts +++ b/selene-vscode/src/util.ts @@ -29,7 +29,7 @@ export async function getLatestSeleneRelease(): Promise { headers: { "User-Agent": "selene-vscode", }, - }).then((body: any) => { + }).then((body) => { return JSON.parse(body) as GithubRelease }) }