Files
bidding_watcher/uni-app-version/src/env.d.ts

19 lines
419 B
TypeScript
Raw Normal View History

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