mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
15 lines
No EOL
332 B
TypeScript
15 lines
No EOL
332 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
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
|
|
} |