增加一个用于代码测试的typescript项目

This commit is contained in:
2023-03-03 11:35:34 +08:00
parent 10047b7b6d
commit 3afb4ca1ff
13 changed files with 2939 additions and 11 deletions

20
code/web/task_schedule/env.d.ts vendored Normal file
View File

@@ -0,0 +1,20 @@
/*
* @Author: Kane
* @Date: 2023-03-03 10:07:00
* @LastEditors: Kane
* @FilePath: /task_schedule/env.d.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
interface ImportMetaEnv
{
readonly VITE_APP_TITLE: string;
readonly VITE_URL_VALIDATE_ACCOUNT: string;
// 更多环境变量...
}
interface ImportMeta
{
readonly env: ImportMetaEnv;
}