21 lines
390 B
TypeScript
21 lines
390 B
TypeScript
/*
|
|
* @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;
|
|
}
|