mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-29 13:03:48 +01:00
feat: Add link to Discord in menu UI feat: Add Discord and Google login functionality Add container around discord and google icons refactor: Update environment variable names for Discord and Google client IDs feat: Add "Or use" translation for login options in multiple languages feat: Update menu UI translations for multiple languages Code review fixes refactor: Update Discord and Google client IDs in environment variables
15 lines
381 B
TypeScript
15 lines
381 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_BYPASS_LOGIN?: string;
|
|
readonly VITE_BYPASS_TUTORIAL?: string;
|
|
readonly VITE_API_BASE_URL?: string;
|
|
readonly VITE_SERVER_URL?: string;
|
|
readonly VITE_DISCORD_CLIENT_ID?: string;
|
|
readonly VITE_GOOGLE_CLIENT_ID?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|