mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 14:55:22 +01:00
* Fix ditto bug and add unit tests Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com>
18 lines
474 B
TypeScript
18 lines
474 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_PORT?: string;
|
|
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;
|
|
readonly VITE_I18N_DEBUG?: string;
|
|
readonly NODE_ENV?: string;
|
|
}
|
|
|
|
declare interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|