From 603ce75ad0689ea293ca6e63fb46dbcf965392ef Mon Sep 17 00:00:00 2001 From: houzhongjian <houzhongyi@126.com> Date: 星期三, 07 五月 2025 10:54:51 +0800 Subject: [PATCH] 模型管理➡数据分析第三方页面跳过token有效期判定,每次请求接口之前先授权 --- types/env.d.ts | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/types/env.d.ts b/types/env.d.ts index 1326e3b..6ac4954 100644 --- a/types/env.d.ts +++ b/types/env.d.ts @@ -5,6 +5,9 @@ // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types const component: DefineComponent<{}, {}, any> export default component + + export class ToolHeader { + } } interface ImportMetaEnv { @@ -14,18 +17,17 @@ readonly VITE_DEV: string readonly VITE_APP_CAPTCHA_ENABLE: string readonly VITE_APP_TENANT_ENABLE: string - readonly VITE_APP_DEFAULT_LOGIN_TENANT: string - readonly VITE_APP_DEFAULT_LOGIN_USERNAME: string - readonly VITE_APP_DEFAULT_LOGIN_PASSWORD: string readonly VITE_APP_DOCALERT_ENABLE: string readonly VITE_BASE_URL: string - readonly VITE_UPLOAD_URL: string readonly VITE_API_URL: string readonly VITE_BASE_PATH: string + readonly VITE_UPLOAD_TYPE: string + readonly VITE_VIDEO_CAMERA_DOMAIN: string readonly VITE_DROP_DEBUGGER: string readonly VITE_DROP_CONSOLE: string readonly VITE_SOURCEMAP: string readonly VITE_OUT_DIR: string + readonly VITE_STATIC_DIR: string } declare global { -- Gitblit v1.9.3