mirror of
https://github.com/pyrohost/pyrodactyl.git
synced 2026-04-06 04:01:58 +02:00
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_PYRODACTYL_VERSION: string;
|
|
readonly VITE_COMMIT_HASH: string;
|
|
readonly VITE_BRANCH_NAME: string;
|
|
readonly VITE_PYRODACTYL_BUILD_NUMBER: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|