19 lines
419 B
TypeScript
19 lines
419 B
TypeScript
|
|
/// <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
|
||
|
|
}
|