2023-04-21 22:21:07 +08:00
|
|
|
/// <reference types="vite/client" />
|
2025-06-02 12:58:13 +08:00
|
|
|
|
|
|
|
interface ImportMetaEnv {
|
2025-06-05 19:09:23 +07:00
|
|
|
readonly BASE_PATH?: string
|
2025-06-08 09:58:50 +08:00
|
|
|
readonly VITE_HIDE_CREDITS?: string
|
|
|
|
readonly VITE_DEFAULT_PRESET?: string
|
2025-06-08 12:00:39 +08:00
|
|
|
readonly VITE_DEFAULT_DATA_TO_ENCODE?: string
|
2025-06-08 09:58:50 +08:00
|
|
|
readonly VITE_QR_CODE_PRESETS?: string
|
|
|
|
readonly VITE_FRAME_PRESET?: string
|
|
|
|
readonly VITE_FRAME_PRESETS?: string
|
|
|
|
readonly VITE_DISABLE_LOCAL_STORAGE?: string
|
2025-06-02 12:58:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
}
|