2025-10-18 21:29:28 -04:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
|
|
declare module '*.vue' {
|
|
|
|
|
import type { DefineComponent } from 'vue'
|
|
|
|
|
const component: DefineComponent<{}, {}, any>
|
|
|
|
|
export default component
|
|
|
|
|
}
|
2025-10-19 21:35:02 -04:00
|
|
|
|
|
|
|
|
// Vite environment variables
|
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
|
readonly VITE_API_URL?: string
|
|
|
|
|
readonly DEV: boolean
|
|
|
|
|
readonly PROD: boolean
|
|
|
|
|
readonly VITEST: boolean
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Global variables for automatic validation
|
|
|
|
|
declare global {
|
|
|
|
|
var __AUTO_VALIDATE__: boolean | undefined
|
|
|
|
|
}
|