25 lines
426 B
TypeScript
25 lines
426 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare const LATEST_COMMIT_HASH: string
|
|
|
|
declare global {
|
|
interface Window {
|
|
isMoved: boolean
|
|
}
|
|
|
|
interface Navigator {
|
|
control: any
|
|
webkitGetUserMedia: any
|
|
mozGetUserMedia: any
|
|
getUserMedia: any
|
|
}
|
|
}
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|
|
|
|
export {}
|