9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
interface ImportMetaEnv {
|
|
readonly PUBLIC_REPO_VERSION_HASH: string;
|
|
readonly PUBLIC_BUILD_ENVIRONMENT: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|