Files
everything-is-suitable/everything-is-suitable-admin/src/vite-env.d.ts
T
张翔 08ea5fbe98 feat(admin): 添加用户管理相关文件
添加用户管理视图、API和状态管理文件
2026-03-28 14:37:29 +08:00

18 lines
375 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
interface ImportMetaEnv {
readonly VITE_APP_TITLE: string
readonly VITE_APP_PORT: string
readonly VITE_APP_BASE_API: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}