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

  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 const __DEVICE_TYPE__: string
  12. declare module '*.vue' {
  13. import type { DefineComponent } from 'vue'
  14. const component: DefineComponent<object, object, any>
  15. export default component
  16. }
  17. declare module 'lodash'