Files
DeviceManager/src/env.d.ts
2023-11-15 01:46:23 +01:00

18 lines
415 B
TypeScript

/// <references types="vite/client" />
interface ImportMetaEnv {
readonly TAURI_FAMILY?: string
readonly TAURI_PLATFORM_VERSION?: string
readonly TAURI_TARGET_TRIPLE?: string
readonly TAURI_ARCH?: string
readonly TAURI_DEBUG?: boolean
readonly TAURI_PLATFORM_TYPE?: string
readonly VITE_HOMEPAGE_URL: string
readonly VITE_BUGS_URL: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}