env.d.ts 536 B

123456789101112131415161718192021222324252627
  1. /// <reference types="vite/client" />
  2. /// <reference types="unplugin-vue-macros/macros-global" />
  3. declare const LATEST_COMMIT_HASH: string
  4. declare global {
  5. interface Window {
  6. isMoved: boolean
  7. isMuted: boolean
  8. showMutedNotice: boolean
  9. }
  10. interface Navigator {
  11. control: any
  12. webkitGetUserMedia: any
  13. mozGetUserMedia: any
  14. getUserMedia: any
  15. }
  16. }
  17. declare module '*.vue' {
  18. import type { DefineComponent } from 'vue'
  19. const component: DefineComponent<{}, {}, any>
  20. export default component
  21. }
  22. export {}