docs: add js docs

This commit is contained in:
2026-05-06 19:01:58 +08:00
parent 5d84cf0589
commit d663cc5d20
3 changed files with 13 additions and 9 deletions
+8
View File
@@ -1,6 +1,14 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
/**
* Redux persistent storage location, use `local` for local storage and `session` for
* session storage
*/
readonly VITE_REDUX_STORAGE: "local" | "session"
/**
* Backend API Base URL
*/
readonly VITE_API_BASE_URL: string
}