消毒机设备
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.

21 lines
431 B

  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly FT_NODE_ENV: string
  4. readonly FT_WS_URL: string
  5. readonly FT_PROXY: string
  6. }
  7. interface ImportMeta {
  8. readonly env: ImportMetaEnv
  9. }
  10. declare const __APP_VERSION__: string
  11. declare module '*.vue' {
  12. import type { DefineComponent } from 'vue'
  13. const component: DefineComponent<object, object, any>
  14. export default component
  15. }
  16. declare module 'lodash'