mirror of
https://github.com/logos-storage/logos-storage-marketplace-ui.git
synced 2026-03-17 01:03:11 +00:00
14 lines
296 B
TypeScript
14 lines
296 B
TypeScript
/// <reference types='vite/client' />
|
|
/// <reference types="vite-plugin-svgr/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
VITE_CODEX_API_URL: string;
|
|
VITE_GEO_IP_URL: string;
|
|
VITE_DISCORD_LINK: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly PACKAGE_VERSION: string;
|
|
readonly env: ImportMetaEnv;
|
|
}
|