douyin/env.d.ts
2024-04-23 15:37:55 +08:00

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 {}