This commit is contained in:
SaraJane
2025-12-30 13:07:28 +00:00
commit 93e3f09667
95 changed files with 20233 additions and 0 deletions

View File

@ -0,0 +1,24 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_ENVIRONMENT: string
readonly VITE_ALGOD_TOKEN: string
readonly VITE_ALGOD_SERVER: string
readonly VITE_ALGOD_PORT: string
readonly VITE_ALGOD_NETWORK: string
readonly VITE_INDEXER_TOKEN: string
readonly VITE_INDEXER_SERVER: string
readonly VITE_INDEXER_PORT: string
readonly VITE_KMD_TOKEN: string
readonly VITE_KMD_SERVER: string
readonly VITE_KMD_PORT: string
readonly VITE_KMD_PASSWORD: string
readonly VITE_KMD_WALLET: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}