|
@@ -7,3 +7,13 @@ declare module "*.vue" {
|
|
const component: DefineComponent<{}, {}, any>;
|
|
const component: DefineComponent<{}, {}, any>;
|
|
export default component;
|
|
export default component;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+interface ImportMetaEnv {
|
|
|
|
+ readonly VITE_FE_VERSION: string;
|
|
|
|
+ readonly VITE_BUILD_DATE: string;
|
|
|
|
+ readonly VITE_GIT_REPO_VERSION: string;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+interface ImportMeta {
|
|
|
|
+ readonly env: ImportMetaEnv;
|
|
|
|
+}
|