From 3e3609f25e5a4f2d2c6290a61d6332fd10644b37 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sat, 6 Sep 2025 01:52:14 +0800 Subject: [PATCH] chore: remove useless type declare --- client/Data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Data.ts b/client/Data.ts index 6c1fb28..dcef42e 100644 --- a/client/Data.ts +++ b/client/Data.ts @@ -1,4 +1,3 @@ -import CryptoJS from "./types/CryptoJS.d.ts" const dataIsEmpty = !localStorage.tws_data || localStorage.tws_data == '' const aes = { @@ -20,6 +19,7 @@ declare global { interface Window { data: { apply: () => void + access_token?: string } } }