mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 00:13:01 +00:00
18 lines
411 B
TypeScript
18 lines
411 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
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
declare const HOMEPAGE_URL: string
|
|
declare const BUGS_URL: string
|