-
-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathenv.d.ts
More file actions
18 lines (16 loc) 路 543 Bytes
/
Copy pathenv.d.ts
File metadata and controls
18 lines (16 loc) 路 543 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly BASE_PATH?: string
readonly VITE_HIDE_CREDITS?: string
readonly VITE_DEFAULT_PRESET?: string
readonly VITE_DEFAULT_DATA_TO_ENCODE?: string
readonly VITE_QR_CODE_PRESETS?: string
readonly VITE_FRAME_PRESET?: string
readonly VITE_FRAME_PRESETS?: string
readonly VITE_DISABLE_LOCAL_STORAGE?: string
readonly VITE_QR_CREATE_SIMPLE_FULL_MODE_TOGGLE?: string
readonly VITE_FIELDS_VISIBLE?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}