douyin/env.d.ts
zyronon 7c75fa3f51 feat: 1. Update workflow.
2. Add git commit hash
2024-04-20 15:14:44 +08:00

21 lines
379 B
TypeScript

/// <reference types="vite/client" />
declare const LATEST_COMMIT_HASH: string
declare global {
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 {}