You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
469 B
22 lines
469 B
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly FT_NODE_ENV: string
|
|
readonly FT_WS_URL: string
|
|
readonly FT_PROXY: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
declare const __APP_VERSION__: string
|
|
declare const __DEVICE_TYPE__: string
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
|
|
const component: DefineComponent<object, object, any>
|
|
export default component
|
|
}
|
|
declare module 'lodash'
|