FreeDATA/gui/src/vite-env.d.ts

15 lines
332 B
TypeScript
Raw Normal View History

2023-09-02 11:37:03 +00:00
/// <reference types="vite/client" />
2023-10-04 17:54:50 +00:00
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
interface ImportMetaEnv {
readonly PACKAGE_VERSION: string;
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}