| 123456789101112131415161718192021222324252627282930 |
- /*
- * @Author: wyd
- * @Date: 2024-03
- * @LastEditors: wyd
- * @LastEditTime: 2024-03
- * @Description:
- */
- /// <reference types="vite/client" />
- declare module '*.vue' {
- import { DefineComponent } from 'vue'
- // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
- const component: DefineComponent<{}, {}, any>
- export default component
- }
- interface ImportMetaEnv {
- /* API基本路径 */
- readonly VITE_BASE_URL: string
- /* 文件路径前缀 */
- readonly VITE_OSS_URL: string
- /* 文件桶 */
- readonly VITE_BARREL_URL: string
- /* websocket地址 */
- readonly VITE_SOCKET_URL: string
- }
- interface ImportMeta {
- readonly env: ImportMetaEnv
- }
|